/** Shopify CDN: Minification failed

Line 5194:49 Unexpected "{"
Line 5194:58 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:all-reviews-popup (INDEX:1) */
.review-with-video-overlay_card-flag {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
  }

  .review-with-video-overlay_card-flag-img {
    display: block;
    height: 11px;
    width: auto;
  }

  .review-with-video-overlay_card-text--collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-with-video-overlay_card-read-more {
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #43334b;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }

  .review-with-video-overlay_loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
  }

  .review-with-video-overlay_loading[hidden] {
    display: none;
  }

  .review-with-video-overlay_loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43334b;
    opacity: 0.6;
    animation: review-with-video-overlay-bounce 1s infinite ease-in-out;
  }

  .review-with-video-overlay_loading-dot:nth-child(2) {
    animation-delay: 0.15s;
  }

  .review-with-video-overlay_loading-dot:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes review-with-video-overlay-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 0.9; }
  }
/* END_SECTION:all-reviews-popup */

/* START_SECTION:brand-logo (INDEX:3) */
@media screen and (min-width: 768px) {
  .brand-logo-section__item--placeholder {
    visibility: hidden;
    pointer-events: none;
  }
}

  @media screen and (min-width: 1225px) {
    .brand-logo-section {
      padding-top: 128px;
      padding-bottom: 64px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .brand-logo-section {
      padding-top: 64px;
      padding-bottom: 32px;     
    }
  }

  @media screen and (max-width: 749px) {
    .brand-logo-section {
      padding-top: 32px;
      padding-bottom: 32px;       
    }
  }

  .brand-logo-section__heading {
    text-align: center;
    font-family: var(--font-h2--family);
    color: #43334B;
    margin-bottom: 32px;
    font-size: 40px;
    font-weight: 700;
  }

  /* Desktop/Tablet Grid View */
  @media screen and (min-width: 768px) {
    .brand-logo-section__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
      align-items: center;
    }

    .brand-logo-section__item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 200px;
    }

    /* Center rows with fewer than 4 items */
    .brand-logo-section__grid::after {
      content: '';
      grid-column: 1 / -1;
    }

    /* When last row has 1 item, center it */
    .brand-logo-section__grid .brand-logo-section__item:last-child:nth-child(4n+1) {
      grid-column: 2;
    }

    /* When last row has 2 items, center them */
    .brand-logo-section__grid .brand-logo-section__item:last-child:nth-child(4n+2),
    .brand-logo-section__grid .brand-logo-section__item:nth-last-child(2):nth-child(4n+1) {
      grid-column: span 1;
    }

    /* When last row has 3 items, center them */
    .brand-logo-section__grid .brand-logo-section__item:last-child:nth-child(4n+3),
    .brand-logo-section__grid .brand-logo-section__item:nth-last-child(2):nth-child(4n+2),
    .brand-logo-section__grid .brand-logo-section__item:nth-last-child(3):nth-child(4n+1) {
      grid-column: span 1;
    }
    .brand-logo-section__slider {
        display: none !important;
    }
  }

  .brand-logo-section__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80px;
  }

  .brand-logo-section__link {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .brand-logo-section__link:hover {
    opacity: 0.7;
  }

  /* Tablet adjustments */
  /* @media screen and (max-width: 1024px) and (min-width: 768px) {
    .brand-logo-section__item {
      flex: 0 0 calc(25% - 23px);
      max-width: calc(25% - 23px);
    }
  } */

  /* Mobile Slider View - Hidden on desktop */
  .brand-logo-section__slider {
    display: none;
  }

  @media screen and (max-width: 767px) {
    .brand-logo-section .page-width {
      position: relative;
    }

    .brand-logo-section__heading {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    /* Mobile: Hide grid by default when slider is enabled */
    .brand-logo-section.mobile-slider-enabled .brand-logo-section__grid {
      display: none;
    }

    /* Mobile: Show slider when enabled */
    .brand-logo-section.mobile-slider-enabled .brand-logo-section__slider {
      display: block;
      position: relative;
      padding-bottom: 80px;
      margin-bottom: 0;
      touch-action: pan-y;
      -webkit-user-select: none;
      user-select: none;
      width: 100%;
      overflow: hidden;
    }

    /* Mobile: Show grid when slider is disabled */
    .brand-logo-section.mobile-grid-enabled .brand-logo-section__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
      align-items: center;
    }

    .brand-logo-section.mobile-grid-enabled .brand-logo-section__item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 200px;
    }

    /* Mobile: Hide slider when disabled */
    .brand-logo-section.mobile-grid-enabled .brand-logo-section__slider {
      display: none;
    }

    /* Slider styles only when enabled */
    .brand-logo-section.mobile-slider-enabled .brand-logo-section__slider .swiper-wrapper {
      touch-action: pan-y;
      margin-bottom: 40px;
    }
    
    /* Override Swiper default pagination styles */
    .brand-logo-section.mobile-slider-enabled .brand-logo-section__slider .swiper-pagination {
      position: absolute !important;
      text-align: center !important;
      left: 50% !important;
      right: auto !important;
      transform: translateX(-50%) !important;
      width: auto !important;
    }

    .brand-logo-section.mobile-slider-enabled .brand-logo-section__slide {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      touch-action: pan-y;
    }

    .brand-logo-section.mobile-slider-enabled .brand-logo-section__slide .brand-logo-section__logo {
      max-height: 60px;
      width: auto;
      pointer-events: none;
    }
  }
/* END_SECTION:brand-logo */

/* START_SECTION:collection-links (INDEX:5) */
collection-links-component {
    --alignment: flex-start;

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

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

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

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

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

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

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

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

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

      &[reverse] {
        grid-template-areas: 'image text';
        grid-template-columns: var(--template-column-ratio) 1fr;
      }

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

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

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

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

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

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

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

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

/* START_SECTION:consultation-appointment-steps (INDEX:8) */
.consultation-steps-section {
    background: transparent;
    font-family: inherit;
  }

  .consultation-steps-section__header {
    text-align: center;
    margin-bottom: 32px;
  }

  .consultation-steps-section__heading {
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    color: #43334B;
    margin: 0 0 16px 0;
    font-size: 40px;
  }

  .consultation-steps-section__description {
    font-size: 16px;
    line-height: 150%;
    color: #43334B;
    font-weight: 500;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .consultation-steps-section__boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .consultation-step-box {
    background:#F3F8FE;
    padding: 16px 24px 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .consultation-step-box__header {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .consultation-step-box__number {
    font-weight: 700;
    font-size: 40px;
    font-family: 'Newsreader';
    line-height: 1;
    background: linear-gradient(49.28deg, #ff8c21, #f5576e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
  }

  .consultation-step-box__title {
    font-weight: 700;
    font-size: 18px;
    font-family: 'Inter';
    line-height: 100%;
    color: #43334B;
    margin: 0;
  }

  .consultation-step-box__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .consultation-step-box__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #755C81;
    margin: 0;
  }

  .consultation-step-box__text ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .consultation-step-box__text ul li {
    font-size: 14px;
    color: #43334B;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .consultation-step-box__text ul li::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("/cdn/shop/files/Leading_Icon_0cef48c5-826f-415d-bab9-be299a5d6528.svg?v=1763383956");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 14px;
}

  

  /* Tablet Styles - Same as Desktop */
  @media screen and (min-width: 750px) and (max-width: 1024px) {
    .consultation-steps-section__boxes {
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .consultation-steps-section__header{
        margin-bottom: 24px;
    }

    .consultation-steps-section__heading{
        font-size: 32px;
    }

    .consultation-steps-section__description{
        font-size: 14px;
    }

    .consultation-step-box__number {
        font-size: 32px;
    }

    .consultation-step-box__title{
        font-size: 16px;
    }

    .consultation-step-box{
        gap: 8px;
        padding: 8px 12px 18px 12px;
    }

    .consultation-step-box__text{
        font-size: 14px;
    }

    .consultation-step-box__text ul li {
        font-size: 12px;
    }


  }

  /* Mobile Styles */
  @media screen and (max-width: 749px) {
    .consultation-steps-section__header {
        margin-bottom: 16px;
        text-align: left;
    }

    .consultation-steps-section__heading {
        font-size: 26px;
        margin: 0px 0 8px 0;
    }

    .consultation-steps-section__description {
      font-size: 12px;
    }

    .consultation-steps-section__boxes {
      grid-template-columns: 1fr;
      gap: 4px;
    }

    .consultation-step-box {
      padding: 12px 12px 18px 12px;
      gap: 8px;
    }

    .consultation-step-box__number {
      font-size: 32px;
    }

    .consultation-step-box__title {
      font-size: 16px;
    }

    .consultation-step-box__header{
        gap: 8px;
    }

    .consultation-step-box__text {
      font-size: 14px;
    }

  }
/* END_SECTION:consultation-appointment-steps */

/* START_SECTION:cta-banner (INDEX:10) */
.shopify-section:has(> .cta-banner) > .cta-banner {
    grid-column: 1 / -1;
  }

  .cta-banner {
    --page-margin: 0.25rem;

    position: relative;
    isolation: isolate;
    padding-block: var(--cta-padding-top-mobile, 40px) var(--cta-padding-bottom-mobile, 40px);
    background: var(--cta-gradient, var(--gradient-brand));
    color: var(--color-white, #fff);

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image: var(--cta-overlay, none);
      background-size: cover;
      background-position: center;
      opacity: var(--cta-overlay-opacity, 1);
      pointer-events: none;
    }

    .cta-banner__inner {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
      text-align: left;
    }

    .cta-banner__heading {
      margin: 0;
      color: var(--color-white, #fff);
      font-size: clamp(1.5rem, 6vw, 2.5rem);
      line-height: 1.15;
      text-wrap: balance;
    }

    .cta-banner__subheading {
      margin: 0;
      color: var(--color-white, #fff);
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .cta-banner__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0;
      border: none;
      background: none;
      color: var(--color-white, #fff);
      font: inherit;
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
    }

    .cta-banner__badge-icon {
      display: inline-flex;
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
      svg * {
        fill: currentColor;
      }
    }

    .cta-banner__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 100vh;
      background: var(--color-white, #fff);
      color: var(--color-purple);
      font-weight: 700;
      text-decoration: none;
      transition: opacity var(--animation-speed, 0.2s) var(--animation-easing, ease);

      &:hover {
        opacity: 0.92;
      }
    }
  }

  @media (min-width: 750px) {
    .cta-banner {
      padding-block: var(--cta-padding-top-desktop, 64px) var(--cta-padding-bottom-desktop, 64px);

      .cta-banner__inner {
        align-items: center;
        gap: 1rem;
        text-align: center;
      }

      .cta-banner__cta {
        order: 1;
        width: auto;
        margin-top: 0.5rem;
      }

      .cta-banner__badge {
        order: 2;
      }
    }
  }

  @media (min-width: 1200px) {
    .cta-banner {
      --page-margin: 7.25rem;
    }
  }
/* END_SECTION:cta-banner */

/* START_SECTION:customer-faq (INDEX:14) */
.shopify-section:has(> .customer-faq) {
    padding-inline: 4px;
  }
  .shopify-section:has(> .customer-faq) > .customer-faq {
    grid-column: 1 / -1;
  }

  .customer-faq {
    display: block;
    color: var(--color-purple, #43334b);
    padding-top: var(--cfq-padding-top, 32px);
    padding-bottom: var(--cfq-padding-bottom, 32px);
    padding-inline: 0rem;
    border-radius: 4px;
    background-color: var(--cfq-background-color, var(--color-background));

    .customer-faq__inner {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
      max-width: 1208px;
      margin-inline: auto;
    }

    .customer-faq__intro {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      background-color: var(--card-bg, #fff);
      border-radius: 4px;
      padding: 0.5rem;
    }

    .customer-faq__heading {
      margin: 0;
      font-family: var(--font-heading--family, 'Newsreader');
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--color-purple, #43334b);
    }
    .customer-faq__heading-inner {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .customer-faq__search {
      position: relative;
      display: flex;
      align-items: center;
      border-radius: 8px;
      padding: 0.625rem 0.875rem;
      gap: 0.5rem;
      box-shadow: 0 1px 2px rgba(67, 51, 75, 0.04);
      border: 1px solid var(--color-background);
    }

    .customer-faq__search-icon {
      display: inline-flex;
      flex-shrink: 0;
      color: var(--color-purple-light, #755c81);
    }

    .customer-faq__search-input {
      flex: 1;
      min-width: 0;
      border: 0;
      background: transparent;
      font: inherit;
      font-size: 0.9375rem;
      color: var(--color-purple, #43334b);
      padding: 0;
      outline: none;
    }

    .customer-faq__search-input::placeholder {
      color: var(--color-purple-light, #755c81);
    }

    .customer-faq__pills-label {
      font-weight: 500;
      margin: 0;
      font-size: 0.8125rem;
      color: var(--color-purple, #755c81);
    }

    .customer-faq__pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
    }

    .customer-faq__pill {
      appearance: none;
      border: 0;
      background: #fff;
      color: var(--color-purple, #43334b);
      font: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 0.35rem 0.5rem;
      border-radius: 4px;
      background-color: #d1e3fc;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .customer-faq__pill:hover {
      background: var(--color-purple-light);
      color: #fff;
    }

    .customer-faq__pill--active {
      background: var(--color-purple);
      color: #fff;
    }

    .customer-faq__list {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .customer-faq__category {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .customer-faq__category--hidden {
      display: none;
    }

    .customer-faq__item-wrap {
      display: block;
    }

    .customer-faq__item-wrap--hidden {
      display: none;
    }

    .customer-faq__item {
      background: var(--card-bg, #fff);
      border-radius: 4px;
      padding: 0;
      overflow: hidden;
    }

    .customer-faq__item-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.75rem 0.5rem;
      cursor: pointer;
      list-style: none;
      font-weight: 600;
      font-size: 0.9375rem;
      line-height: 1.35;
    }

    .customer-faq__item-summary::-webkit-details-marker {
      display: none;
    }

    .customer-faq__item-question {
      flex: 1;
      min-width: 0;
    }

    .customer-faq__item-icon {
      position: relative;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: #95b3eb;
    }

    .customer-faq__item-icon::before,
    .customer-faq__item-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      border-radius: 1px;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .customer-faq__item-icon::before {
      top: 9px;
      left: 2px;
      right: 2px;
      height: 2px;
    }

    .customer-faq__item-icon::after {
      left: 9px;
      top: 2px;
      bottom: 2px;
      width: 2px;
    }

    .customer-faq__item[open] .customer-faq__item-icon::after {
      opacity: 0;
      transform: rotate(90deg);
    }

    .customer-faq__item-answer {
      padding: 0 0.5rem 1rem;
      font-size: 0.9375rem;
      line-height: 1.5;
      font-weight: 500;
      color: var(--color-purple, #43334b);

      :is(p) {
        margin: 0;
      }

      :is(p) + p {
        margin-top: 0.5rem;
      }
    }

    .customer-faq__see-all {
      align-self: flex-start;
      appearance: none;
      background: transparent;
      border: 0;
      padding: 0.25rem 0;
      font-weight: 500 !important;
      font: inherit;
      font-size: 0.875rem;
      color: var(--color-purple, #43334b);
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
    }

    .customer-faq__see-all:hover {
      color: var(--color-purple-light, #755c81);
    }

    &[data-expanded='true'] {
      .customer-faq__item-wrap[data-overflow='true'] {
        display: block;
      }

      .customer-faq__category--hidden {
        display: flex;
      }

      .customer-faq__see-all {
        display: none;
      }
    }

    &[data-searching='true'] {
      .customer-faq__pills .customer-faq__pill--active {
        background: #fff;
        color: var(--color-purple, #43334b);
      }

      .customer-faq__category--hidden {
        display: flex;
      }

      .customer-faq__item-wrap[data-overflow='true'] {
        display: block;
      }

      .customer-faq__see-all {
        display: none;
      }

      .customer-faq__item-wrap--hidden {
        display: none;
      }

      .customer-faq__category--no-matches {
        display: none;
      }
    }
  }

  .customer-faq .customer-faq__item-wrap[data-overflow='true'] {
    display: none;
  }

  @media (min-width: 750px) {
    .customer-faq {
      padding-top: var(--cfq-padding-top-desktop, 64px);
      padding-bottom: var(--cfq-padding-bottom-desktop, 64px);
      padding-inline: 2rem;
      border-radius: 0;

      .customer-faq__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
        column-gap: 64px;
        row-gap: 0.25rem;
        align-items: start;
      }

      .customer-faq__intro {
        grid-column: 1;
        background-color: transparent;
        grid-row: 1 / span 2;
        gap: 1rem;
        position: sticky;
        top: 1rem;
        padding: 0;
      }

      .customer-faq__heading-inner {
        background: var(--card-bg);
        padding: 0.5rem;
        border-radius: 4px;
      }

      .customer-faq__heading {
        font-size: 2.25rem;
        line-height: 1.1;
      }

      .customer-faq__list {
        grid-column: 2;
        grid-row: 1;
      }

      .customer-faq__see-all {
        grid-column: 2;
        grid-row: 2;
        justify-content: flex-start;
        display: flex;
      }

      .customer-faq__item-summary {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
      }

      .customer-faq__item-answer {
        padding: 0rem 0.5rem 0.5rem;
        font-size: 1rem;
      }
    }
  }

  /* On the index page this section adopts the rebuilt-homepage gutter
     (0.5rem mobile / 7.25rem desktop, content capped at the page width)
     instead of its default 1208px container, so it lines up with the new
     index sections. Product/collection usage is unaffected. */
  [data-template='index'] .shopify-section:has(> .customer-faq) {
    padding-inline: 0;
  }

  [data-template='index'] .customer-faq {
    --page-margin: 0.25rem;
    padding-inline: 0;
  }

  [data-template='index'] .customer-faq .customer-faq__inner {
    box-sizing: border-box;
    max-width: var(--page-width);
    margin-inline: auto;
    padding-inline: var(--page-margin);
  }

  @media (min-width: 1200px) {
    [data-template='index'] .customer-faq {
      --page-margin: 7.25rem;
    }
  }
/* END_SECTION:customer-faq */

/* START_SECTION:customer-survey-banner (INDEX:16) */
.shopify-section:has(> .customer-survey-banner) {
    padding-inline: 4px;
  }
  .shopify-section:has(> .customer-survey-banner) > .customer-survey-banner {
    grid-column: 1 / -1;
  }

  .customer-survey-banner {
    background: var(--card-bg, #f3f8fe);
    padding: 1rem;
    border-radius: 4px;

    .customer-survey-banner__inner {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 1208px;
      margin-inline: auto;
    }

    .customer-survey-banner__intro {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .customer-survey-banner__heading {
      font-family: var(--font-heading--family, 'Newsreader');
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--color-purple, #43334b);

      :is(p) {
        margin: 0;
      }

      :is(p) + p {
        margin-top: 0.5rem;
      }

      strong {
        font-weight: inherit;
        background: linear-gradient(48.59deg, #ff8c21 0%, #f5576e 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
      }
    }

    .customer-survey-banner__caption {
      margin: 0;
      font-size: 0.875rem;
      line-height: 140%;
      color: var(--color-purple-light, #755c81);
    }

    .customer-survey-banner__body {
      color: var(--color-purple, #43334b);
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;

      :is(p) {
        margin: 0;
      }

      :is(p) + p {
        margin-top: 0.5rem;
      }
    }
  }

  @media (min-width: 750px) {
    .shopify-section:has(> .customer-survey-banner) {
      padding-inline: 0;
    }
    .customer-survey-banner {
      padding-top: var(--csb-padding-top-desktop, 7rem);
      padding-bottom: var(--csb-padding-bottom-desktop, 7rem);
      padding-inline: 1rem;
      border-radius: 0;
      background: #e3efff;

      .customer-survey-banner__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 3rem;
        row-gap: 1rem;
        align-items: center;
      }

      .customer-survey-banner__intro {
        gap: 0.75rem;
      }

      .customer-survey-banner__heading {
        font-size: 2.25rem;
        line-height: 1.15;
      }

      .customer-survey-banner__caption {
        font-size: 0.9375rem;
      }

      .customer-survey-banner__body {
        padding: 1.5rem 1.75rem;
        font-size: 1rem;
      }
    }
  }
/* END_SECTION:customer-survey-banner */

/* START_SECTION:deal-section (INDEX:17) */
.deal-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45.59deg, #ff8c21, #f5576e);
  }

  .deal-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*opacity: .2;*/
    --background-overlay: "";
    background-position: center right;
    background-repeat: repeat-x;
    background-size: 60% auto;
    transition: background .3s, border-radius .3s, opacity .3s;
    mix-blend-mode: initial;
    background-image: url(/cdn/shop/files/Union.svg?v=1771429331);
  }

  .deal-section .deal-section__inner {
    position: relative;
    z-index: 1;
  }

  .deal-section .deal-section__content {
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .deal-section .deal-section__column {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    width: 100%;
    max-width: 572px;
  }

  .deal-section .deal-section__column--primary {
    flex: 1 1 50%;
  }

  .deal-section .deal-section__column--secondary {
    flex: 1 1 50%;
  }

  .deal-section__card.deal-section__card--primary {
    border-radius: 4px 4px 16px 16px !important;
  }
  .deal-section .deal-section__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 36px;
    box-shadow: 0 32px 60px -30px rgba(34, 16, 58, 0.35);
    color: #43334B;
  }
 .deal-section .badge-none .deal-section__card {
    border-radius: 16px !important;
  }
  .deal-section .deal-section__badge-wrap {
    display: flex;
    justify-content: center;
  }

  .deal-section .deal-section__badge {
    display: inline-flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 8px 26px;
    justify-content: center;
    border-radius: 16px 16px 4px 4px;
    background:#43334B;
    color: #F7F2FF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: capitalize;
  }

  .deal-section .deal-section__badge-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
  }

  .deal-section .deal-section__heading {
    /* font-size: 40px; */
    line-height: normal;
    margin-bottom: 16px;

  }

  .deal-section .deal-section__subheading {
    margin: 0 0 18px;
    /* font-size: 40px; */
    line-height: 1;
  }

  .deal-section .deal-section__text {
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    @media screen and (max-width:749px){
      font-size: 14px;
    }
  }

  .deal-section .deal-section__text p {
    margin: 0 0 16px;
  }

  .deal-section .deal-section__text p:last-child {
    margin-bottom: 0;
  }

  .deal-section .deal-section__column--primary .deal-section .deal-section__text--footer {
    font-weight: 700;
  }
  .deal-section .deal-section__text--footer {
    margin-top: 16px;
    font-weight: 500;
  }

  .deal-section .deal-section__list {
    display: grid;
    gap: 4px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }

  .deal-section .deal-section__list-item {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
  }

  .deal-section .deal-section__icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .deal-section .deal-section__list-text strong {
    font-weight: 700;
  }

  @media (max-width: 1200px) {
    .deal-section .deal-section__content {
      gap: 28px;
      flex-wrap: wrap;
    }

    .deal-section .deal-section__column {
      max-width: 520px;
    }

    .deal-section .deal-section__card {
      padding: 30px;
    }
  }

  @media (max-width: 1023px) {
    .deal-section .deal-section__content {
      flex-direction: row;
      gap: 24px;
      align-items: stretch;
    }

    .deal-section .deal-section__column {
      max-width: none;
    }

    .deal-section .deal-section__badge-wrap {
      justify-content: flex-start;
    }

    .deal-section .deal-section__card {
      padding: 28px;
    }
  }

  @media (max-width: 749px) {
    .deal-section {
      padding-left: 16px;
      padding-right: 16px;
    }

    .deal-section__card.deal-section__card--primary {
        border-radius: 4px 4px 16px 16px;
    }

    .deal-section .deal-section__card {
      padding: 24px;
      border-radius: 16px;
    }

    .deal-section .deal-section__badge {
      font-size: 13px;
      padding-inline: 18px;
    }

    .deal-section .deal-section__heading {
      margin-top: 16px;
    }
  }
/* END_SECTION:deal-section */

/* START_SECTION:ebook-popup (INDEX:19) */
.ebook-popup {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .ebook-popup.is-active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .ebook-popup[hidden] {
    display: none;
  }

  .ebook-popup.is-active[hidden] {
    display: flex;
  }

  .ebook-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 101;
  }

  .ebook-popup__content {
    position: relative;
    z-index: 102;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    margin: 20px;
    padding: 24px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  @media (min-width: 750px) {
    .ebook-popup__content {
      padding: 32px;
    }
  }

  .ebook-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 103;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .ebook-popup__close:hover {
    opacity: 0.7;
    transform: scale(1.1);
  }

  .ebook-popup__close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }

  .ebook-popup__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }

  .ebook-popup__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  .ebook-popup__icon svg {
    width: 100%;
    height: 100%;
  }

  .ebook-popup__title {
    margin: 0;
    color: #43334b;
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
  }

  @media (min-width: 750px) {
    .ebook-popup__title {
      font-size: 24px;
    }
  }

  .ebook-popup__media {
    margin: 16px 0;
    text-align: center;
  }

  .ebook-popup__image {
    max-width: 220px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .ebook-popup__body {
    margin-top: 6px;
  }

  .ebook-popup__text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
  }

  .ebook-popup__text p {
    margin: 0 0 12px 0;
    color: #43334b;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
  }

  .ebook-popup__text p:last-child {
    margin-bottom: 0;
  }
/* END_SECTION:ebook-popup */

/* START_SECTION:expert-contact (INDEX:20) */
.shopify-section:has(> .expert-contact) > .expert-contact {
    grid-column: 1 / -1;
  }

  .expert-contact {
    padding-top: var(--expert-contact-padding-top, 48px);
    padding-bottom: var(--expert-contact-padding-bottom, 48px);
    padding-inline: 4px;
    background: var(--expert-contact-bg, #e3efff);
    color: var(--color-purple);

    /* Mobile: a single white card. Image + heading + contact sit in the top
       row; quote and attribution stack full width below. */
    .expert-contact__card {
      background: var(--expert-contact-card, #fff);
      border-radius: 0.25rem;
      padding: 20px;
    }

    .expert-contact__grid {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      column-gap: 16px;
      row-gap: 12px;
      align-items: start;
      grid-template-areas:
        'media       heading'
        'media       contact'
        'quote       quote'
        'attribution attribution';
    }

    .expert-contact__media {
      grid-area: media;
    }

    .expert-contact__image {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--expert-contact-bg, #e3efff);
    }

    .expert-contact__heading {
      grid-area: heading;
      align-self: center;
      margin: 0;
      font-family: var(--font-body--family);
      font-size: 1rem !important;
      font-style: normal;
      font-weight: 600;
      line-height: 140%;
      color: var(--color-purple);
    }

    .expert-contact__quote {
      grid-area: quote;
      margin: 0;
      font-size: 1.125rem;
      line-height: 1.45;
      font-weight: 500;

      :is(p, :first-child) {
        margin: 0;
      }

      p + p {
        margin-top: 0.75em;
      }
    }

    .expert-contact__attribution {
      grid-area: attribution;
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
      margin: 0;
    }

    .expert-contact__author {
      font-weight: 700;
      font-size: 1.0625rem;
      line-height: 1.3;
    }

    .expert-contact__role {
      font-size: 0.9375rem;
      line-height: 1.3;
      color: rgb(var(--color-foreground-rgb) / 0.6);
    }

    .expert-contact__contact {
      grid-area: contact;
      align-self: center;
      font-size: 1rem;
      font-style: normal;
      font-weight: 600;
      line-height: 140%;
    }

    /* Hidden on mobile — the section heading already introduces the contacts. */
    .expert-contact__contact-heading {
      display: none;
    }

    .expert-contact__contact-list {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .expert-contact__contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-purple);
      font-size: 0.9375rem;
      line-height: 1.4;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 1px;

      &:hover {
        text-decoration-thickness: 2px;
      }
    }

    .expert-contact__contact-icon {
      display: inline-flex;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
    }
  }

  @media (min-width: 750px) {
    .expert-contact {
      padding-inline: 0;

      .expert-contact__card {
        max-width: 1208px;
        margin-inline: auto;
        padding-inline: 16px;
        background: transparent;
        border-radius: 0;
      }

      .expert-contact__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        column-gap: clamp(2rem, 5vw, 5rem);
        row-gap: 0.5rem;
        align-items: start;
        grid-template-rows: minmax(0, 1fr) auto auto auto auto minmax(0, 1fr);
        grid-template-areas:
          'media .'
          'media heading'
          'media quote'
          'media attribution'
          'media contact'
          'media .';
      }

      .expert-contact__media {
        align-self: stretch;
        justify-self: center;
      }

      .expert-contact__image {
        width: 100%;
        max-width: 25rem;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--color-white, #fff);
      }

      .expert-contact__heading {
        font-family: var(--font-heading--family);
        font-size: 2.5rem !important;
        font-weight: 700;
        line-height: 100%;
      }

      .expert-contact__quote {
        font-size: 1.0625rem;
        line-height: 1.55;
      }

      .expert-contact__contact {
        margin-top: 0.5rem;
        padding: 1rem 1.25rem;
        background: var(--expert-contact-card, #fff);
        border-radius: 0.25rem;
      }

      .expert-contact__contact-heading {
        display: block;
        margin: 0 0 0.5rem;
        font-family: var(--font-body--family);
        font-weight: 700;
        font-size: 1.0625rem;
        line-height: 1.3;
        color: var(--color-purple);
      }

      .expert-contact__contact-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
      }

      .expert-contact__contact-link {
        font-size: 1rem;
      }
    }
  }
/* END_SECTION:expert-contact */

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

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

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

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

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

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

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

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

/* START_SECTION:footer-bottom-bar (INDEX:24) */
footer.medicross-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: var(--border-width) solid #755c81;
    padding-bottom: 16px;
  }

  /* .footer-left {
  display: flex;
  align-items: center;
  gap: 181px;
} */

  /* .footer-logo img {
  height: auto;
  width:202px;
} */

  .footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* .lang-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  color: #fff;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
}

.lang-select option {
  color: #333;
} */
  /* .footer-social a svg {
    width: 24px;
    height: 24px;
    fill: #f3f8fe9c;
} */
  /* .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
  background: #755c81;
  border-radius: 50%;
  padding: 16px;
} */

  .footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .footer-right {
    text-align: right;
  }
  .footer-contacts {
    display: flex;
    gap: 25px;
  }
  .footer-contacts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* margin-left: 15px; */
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
  }
  /* .footer-social {
    display: flex;
    gap: 8px;
} */
  .copyright {
    margin-top: 8px;
    color: #f3f8fe9c;
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
  }

  @media screen and (min-width: 750px) {
    .footer-right {
      display: flex;
      width: 100%;
      justify-content: space-between;
    }
    .copyright {
      margin-top: 0px;
    }
  }
  @media (max-width: 700px) {
    .footer-main {
      flex-direction: column;
      text-align: center;
    }
    .footer-right {
      flex-direction: column;
      text-align: center;
      text-align: left;
    }
  }

  .bottom-bar {
    display: flex;
    gap: 11px;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    color: #f3f8fe9c;
    .info-icon {
      width: 24px;
      margin: auto;
    }
    .info-text {
      width: calc(100% - 35px);
    }
  }
/* END_SECTION:footer-bottom-bar */

/* START_SECTION:footer-top-bar (INDEX:25) */
@media screen and (min-width: 750px) {
    .email-signup__form {
      min-width: 320px;
    }
  }
    .footer-top-bar{ 
        .footer-content.spacing-style {
            border-bottom: 1px solid #755c81;
        }
        .footer-content{ display: flex;}
        email-signup-block.email-signup-block {
            max-width: 50%;
            min-width: auto;
            display: flex;
            gap: 24px;
            .email-signup__heading.h3 {
                font-family: Newsreader;
                font-weight: 700;
                font-size: 24px;
                line-height: 120%;
                letter-spacing: 0;
                vertical-align: middle;
                padding: 0;
            }
        }
    }
/* END_SECTION:footer-top-bar */

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

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

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

  .utilities > * {
    text-align: center;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* START_SECTION:footer (INDEX:27) */
@media screen and (min-width: 750px) and (max-width: 989px) {

  }
   @media screen and (min-width: 750px) and (max-width: 989px) {

  }
  /* Mobile: Single column layout (base styles) */
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--footer-gap);
  }

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

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

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

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

/* START_SECTION:header-announcements (INDEX:29) */
.announcement-bar {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-block-end: var(--border-bottom-width) solid var(--color-border);
    padding: 0 1em;
  }

  .announcement-bar__label {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    padding-inline-end: 20px;
    margin-inline-end: 4px;
    position: relative;
  }

  .announcement-bar__label::after {
    content: '';
    position: absolute;
    inset-block: 2px;
    inset-inline-end: 0;
    width: 1px;
    background-color: currentColor;
    opacity: 0.35;
  }

  .announcement-bar__marquee {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
  }

  @keyframes announcement-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * var(--marquee-shift, 0px))); }
  }

  .announcement-bar__track {
    display: flex;
    align-items: center;
    width: max-content;
  }

  .announcement-bar__track[data-marquee-ready] {
    animation: announcement-marquee var(--marquee-duration, 28s) linear infinite;
  }

  .announcement-bar:hover .announcement-bar__track[data-marquee-ready] {
    animation-play-state: paused;
  }

  .marquee-item {
    margin-inline-end: 40px;

    @media screen and (min-width: 1280px) {
      margin-inline-end: 100px;
    }

    .announcement-bar__text {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      font-size: 14px;
      font-weight: 500;
      line-height: 24px;
      position: relative;
    }
  }

  .marquee-item .check-icon svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .marquee-item .flag-icon {
    display: inline-flex;
    align-items: center;
  }

  .marquee-item .flag-icon img {
    height: 16px;
    width: auto;
  }

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

/* START_SECTION:header-promo-banner (INDEX:30) */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .promo-banner--custom {
    background-color: var(--promo-bg, inherit);
    color: var(--promo-fg, inherit);
  }

  .promo-banner__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: inherit;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
  }

  .promo-banner__text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* When a promo banner is present in the DOM it is, by definition, active —
     hide the standard announcement carousel so the promo sits in its slot.
     The rule only matches while .promo-banner actually exists. */
  body:has(.promo-banner) .announcement-bar {
    display: none;
  }
/* END_SECTION:header-promo-banner */

/* START_SECTION:header (INDEX:31) */
.header-section:has(> #header-component[sticky='always']),
  .header-section:has(> #header-component[sticky='scroll-up'][data-sticky-state='active']) {
    position: sticky;
    top: -1px;
    z-index: var(--layer-sticky);
  }
  .header-section .header .header__row {
    border-bottom: 1px solid #bad1f2;
  }

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

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

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

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

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

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

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

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

    &[transparent='not-sticky'][data-sticky-state='active'],
    /* Only show opaque background when hovering over menu items with children (mega menu)
       Multiple selectors for performance: each simple :has() check is faster than one complex selector with multiple conditions */
    &:has(.mega-menu__list:hover),
    &:has(.menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'], [data-animating])),
    &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'], [data-animating])) {
      --header-logo-display: unset;
      --header-logo-inverse-display: unset;
      --header-bg-color: unset;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;

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

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

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

  .header--inherit-color-scheme-on-menu-open:has(.mega-menu__list:hover) .header__row,
  .header--inherit-color-scheme-on-menu-open:has(
      .menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'], [data-animating])
    )
    .header__row,
  .header--inherit-color-scheme-on-menu-open:has(
      .menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'], [data-animating])
    )
    .header__row {
    --color-foreground: inherit;
    --color-foreground-rgb: inherit;
    --color-background: inherit;
    --color-background-rgb: inherit;
    --color-border: inherit;
    --color-border-rgb: inherit;
  }

  .header-section {
    position: relative;
  }

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

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

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

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

  .header__row {
    position: relative;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header.header--compact {
    --header-padding: var(--padding-2xs);
  }
  .language-selector.language-selector--collapse-space {
    padding: 0;
  }
  .header__columns {
    --padding-block-start: 8px;
    --padding-block-end: 8px;
  }

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

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

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

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

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

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

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

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

/* START_SECTION:hero (INDEX:33) */
.shopify-section:has(> .hero) > .hero {
    grid-column: 1 / -1;
  }

  .hero {
    --page-margin: 0.25rem;

    position: relative;
    isolation: isolate;
    display: flex;
    overflow: hidden;
    min-height: var(--hero-min-height-mobile, 600px);

    .hero__media {
      position: absolute;
      inset: 0;
      z-index: 0;
      &::after {
        content: '';
        background: linear-gradient(0deg, var(--color-background) -4%, transparent 10%);
        position: absolute;
        inset: 0;
      }
    }

    .hero__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 28%;
    }

    .hero__content {
      box-sizing: border-box;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
      padding-block: 2rem;
    }

    .hero__intro {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 40ch;
    }

    .hero__heading {
      margin: 0;
      font-size: clamp(2rem, 8.5vw, 2.5rem);
      line-height: 1.1;
    }

    .hero__text {
      color: var(--color-purple);
      font-size: 1rem;
      font-style: normal;
      font-weight: 500;
      line-height: 140%;

      p {
        margin: 0;
      }

      p + p {
        margin-top: 0.5em;
      }
    }

    .hero__badges {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 4px;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 8px;
      padding: 0;
      border: none;
      background: none;
      color: var(--color-foreground);
      font: inherit;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;

      &:hover {
        text-decoration-thickness: 2px;
      }
    }

    .hero__badge-icon {
      display: inline-flex;
      flex-shrink: 0;
      color: #51b92c;
    }

    .hero__usp {
      display: block;
      color: var(--color-foreground);
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 140%;
    }

    .hero__actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .hero__cta {
      --button-color: var(--color-white, #fff);
      border-radius: 100vh;
      width: 100%;
      background-image: var(--gradient-brand);
      padding-inline: 2rem;
      font-size: 1rem;
      font-weight: 600;
      line-height: 140%;
      &:hover {
        opacity: 0.95;
      }
    }

    .hero__link {
      color: var(--color-foreground);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 140%;
      &:hover {
        color: var(--color-primary-hover);
      }
    }
  }

  @media (min-width: 750px) {
    .hero {
      --page-margin: 0.25rem;
      min-height: var(--hero-min-height-desktop, 600px);
      z-index: 0;

      .hero__media {
        z-index: 1;
        &::after {
          background: linear-gradient(90deg, #d1e3fcd2 0%, #d1e3fc8d 40%, transparent 60%);
        }
      }

      .hero__image {
        object-position: 80% 50%;
      }

      .hero__content {
        justify-content: center;
        gap: 28px;
      }

      .hero__intro {
        max-width: 75ch;
        gap: 16px;
        position: relative;
        z-index: 2;
      }

      .hero__badges {
        flex-direction: row;
        align-items: center;
      }

      .hero__heading {
        font-size: clamp(2.75rem, 4vw, 3.75rem);
      }

      .hero__actions {
        flex-direction: row;
        align-items: center;
        gap: 20px;
      }

      .hero__cta {
        width: auto;
      }
    }
  }

  @media (min-width: 1200px) {
    .hero {
      --page-margin: 7.5rem;
    }
    .hero__content {
      min-height: 50vh;
    }
  }
/* END_SECTION:hero */

/* START_SECTION:how-it-works (INDEX:37) */
.shopify-section:has(> .how-it-works) > .how-it-works {
    grid-column: 1 / -1;
  }

  .how-it-works {
    --page-margin: 0.25rem;

    position: relative;
    isolation: isolate;
    padding-block: var(--hiw-padding-top-mobile, 40px) var(--hiw-padding-bottom-mobile, 40px);
    background: var(--hiw-gradient, var(--gradient-brand));
    color: var(--color-white, #fff);

    /* Pattern over the gradient (painted above it, behind content via z-index).
       soft-light blends the pattern's light/dark into the gradient so the waves
       read as texture instead of a flat wash; opacity tunes the strength. */
    &::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image: var(--hiw-overlay, none);
      background-size: cover;
      background-position: center;
      opacity: var(--hiw-overlay-opacity, 1);
      pointer-events: none;
    }

    .how-it-works__inner {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
    }

    .how-it-works__header {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .how-it-works__heading {
      margin: 0;
      color: var(--color-white, #fff);
      font-size: clamp(1.75rem, 6vw, 2.5rem);
      line-height: 1.15;
      text-wrap: balance;
    }

    .how-it-works__subheading {
      margin: 0;
      color: var(--color-white, #fff);
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .how-it-works__steps {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .how-it-works__step {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      grid-template-areas:
        'media label'
        'media desc';
      align-items: start;
      column-gap: 0.75rem;
      row-gap: 0.25rem;
      padding: 0.75rem;
      border-radius: 0.25rem;
      background: #fff;
      color: var(--color-purple);
      height: 100%;
    }

    .how-it-works__step:has(.how-it-works__notice--inline) {
      grid-template-areas:
        'media label'
        'media desc'
        'note  note';
    }

    .how-it-works__media {
      grid-area: media;
      align-self: center;
    }

    .how-it-works__media-img {
      display: block;
      width: 2.5rem;
      height: 2.5rem;
      object-fit: contain;
    }

    .how-it-works__text {
      display: contents;
    }

    .how-it-works__label {
      grid-area: label;
      margin: 0;
      font-weight: 700;
      font-size: 0.9375rem;
      line-height: 1.3;
      color: #ffa41c;
    }

    .how-it-works__desc {
      grid-area: desc;
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .how-it-works__notice {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 0.75rem;
      border-radius: 0.25rem;
      background: #e7f0fc;
      color: var(--color-purple);
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .how-it-works__notice--inline {
      grid-area: note;
      margin-top: 0.5rem;
    }

    .how-it-works__notice--standalone {
      display: none;
    }

    .how-it-works__notice-icon {
      display: inline-flex;
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
    }

    .how-it-works__notice-text {
      :is(p, :first-child) {
        margin: 0;
      }

      p + p {
        margin-top: 0.25rem;
      }
    }

    .how-it-works__video {
      display: flex;
      justify-content: flex-start;
    }

    .how-it-works__video-trigger {
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      color: var(--color-white, #fff);
      font: inherit;
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
    }

    .how-it-works__modal {
      width: min(60rem, 92vw);
      max-width: 92vw;
      max-height: 90dvh;
      padding: 0;
      border: none;
      background: transparent;
      overflow: visible;
    }

    .how-it-works__modal[open] {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .how-it-works__modal-inner {
      display: block;
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #000;
      border-radius: 0.5rem;
      overflow: hidden;
    }

    .how-it-works__modal-frame {
      width: 100%;
      height: 100%;

      iframe {
        width: 100%;
        height: 100%;
        border: 0;
      }
    }

    .how-it-works__modal-close {
      position: absolute;
      top: -2.75rem;
      right: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgb(0 0 0 / 0.5);
      color: #fff;
      cursor: pointer;
    }

    .how-it-works__modal::backdrop {
      background: rgb(0 0 0 / 0.6);
    }
  }

  @media (min-width: 750px) {
    .how-it-works {
      padding-block: var(--hiw-padding-top-desktop, 64px) var(--hiw-padding-bottom-desktop, 64px);

      .how-it-works__inner {
        gap: 2rem;
      }

      .how-it-works__header {
        align-items: center;
        text-align: center;
      }

      .how-it-works__steps {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-areas:
          'step1 step2 step3'
          'notice notice notice';
        column-gap: 1.25rem;
        row-gap: 1rem;
        align-items: start;
      }

      .how-it-works__step--1 {
        grid-area: step1;
      }
      .how-it-works__step--2 {
        grid-area: step2;
      }
      .how-it-works__step--3 {
        grid-area: step3;
      }

      .how-it-works__step {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
          'media'
          'label'
          'desc';
        gap: 0.5rem;
        padding: 1rem;
      }

      .how-it-works__step:has(.how-it-works__notice--inline) {
        grid-template-areas:
          'media'
          'label'
          'desc';
      }

      .how-it-works__media-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-radius: 0.25rem;
      }

      .how-it-works__label {
        font-size: 1rem;
      }

      .how-it-works__notice--inline {
        display: none;
      }

      .how-it-works__notice--standalone {
        display: flex;
        grid-area: notice;
        justify-self: center;
        align-items: center;
        max-width: max-content;
        padding: 0.75rem 1.25rem;
      }

      .how-it-works__video {
        justify-content: center;
      }
    }
  }
  @media (min-width: 1200px) {
    .how-it-works {
      --page-margin: 7.25rem;
    }
  }
/* END_SECTION:how-it-works */

/* START_SECTION:image-with-text (INDEX:40) */
.image-with-text__heading {
      color: #43334B;
      margin-bottom: 8px;
    }

    .icon-text-block img {
        width: 24px;
    }
    .icon-text-block{
        display: flex;
        gap:4px; 
        background: #F3F8FE;
        padding: 12px 16px;
        border-radius: 16px; 
    }
    .icon-text-item {
        display: flex;
        gap:4px;
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        color: var(--Trust-100, #755C81);
    }
    /*h2.image-with-text__heading.inline-richtext.h1.mob-none {
        font-weight: 700;
        font-size: 80px;
        letter-spacing: 0;
        line-height:1;
        @media screen and (max-width:1200px){
            font-size: 48px;
        }
        @media screen and (max-width:749px){
            font-size: 40px;
        }  
    }*/
    .image-with-text__text.rte.body {
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        @media screen and (max-width:1200px){
        font-size: 14px; 
        }
        *{
            margin: 0;
        }
    }
    .img-pos.hide_image_mob{
      @media screen and (max-width:749px){
        display:none;
      }
    }
/* END_SECTION:image-with-text */

/* START_SECTION:judgme-reviews (INDEX:45) */
.shopify-section:has(> .judgme-reviews) > .judgme-reviews {
    grid-column: 1 / -1;
  }

  .judgme-reviews {
    padding-top: var(--jmr-padding-top, 32px);
    padding-bottom: var(--jmr-padding-bottom, 32px);
    padding-inline: var(--jmr-padding-inline, 16px);
    color: var(--color-purple);

    .judgme-reviews__inner {
      width: 100%;
      max-width: var(--page-width, 100%);
      margin-inline: auto;
    }

    .judgme-reviews__panel {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .judgme-reviews__header {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      background: #f3f8fe;
      padding: 0.5rem;
      border-radius: 4px;
    }

    .judgme-reviews__tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
      width: 100%;
    }

    .judgme-reviews__tab {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.4rem 0.875rem;
      border: 1px solid #d1e3fc;
      border-radius: 4px;
      background: #d1e3fc;
      color: var(--color-purple);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      font-weight: 600;
    }

    .judgme-reviews__tab.is-active {
      background: #43334b;
      border-color: var(--color-purple);
      color: white;

      .judgme-reviews__tab-count {
        color: white;
      }
    }

    .judgme-reviews__tab-count {
      color: var(--color-purple-light, #6a5b78);
    }

    .judgme-reviews__rating-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;

      &:is(.judgme-reviews__rating-strip--desktop) {
        display: none;
      }
    }

    .judgme-reviews__rating-stars {
      display: inline-flex;
      gap: 1px;
      color: #ffa41c;

      svg {
        width: 16px;
        height: 16px;
      }
    }

    .judgme-reviews__rating-text {
      color: var(--color-purple);

      strong {
        font-weight: 700;
      }
    }

    .judgme-reviews__rating-link {
      color: var(--color-purple);
      font-size: 0.75rem;
      margin-left: auto;
    }

    .judgme-reviews__featured {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      background: var(--card-bg, #fff);
      border-radius: 4px;
    }

    .judgme-reviews__featured-avatar {
      flex-shrink: 0;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      overflow: hidden;
      background: #e7f0fc;
    }

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

    .judgme-reviews__featured-body {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      min-width: 0;
    }

    .judgme-reviews__featured-quote {
      margin: 0;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.35;
      color: var(--color-purple);
    }

    .judgme-reviews__featured-meta {
      margin: 0;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      color: var(--color-purple);
    }

    .judgme-reviews__featured-author {
      font-weight: 500;
    }

    .judgme-reviews__featured-flag {
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }

    .judgme-reviews__flag-img {
      display: block;
      height: 11px;
      width: auto;
    }
    .judgme-reviews__grid-wrapper {
      display: grid;
      /* minmax(0, 1fr) — without the explicit 0 min, the grid track can grow
         beyond its parent when a child (e.g. a long unbreakable word in a
         review, a wide image) has intrinsic width >100%. See feedback memory. */
      grid-template-columns: minmax(0, 1fr);
      gap: 1rem;
      background: #f3f8fe;
      border-radius: 4px;
      padding: 0.5rem;
    }
    .judgme-reviews__grid {
      min-width: 0;
      column-count: 2;
      column-gap: 8px;
      /* Keeps the sticky header from cropping the first row when paginating. */
      scroll-margin-top: calc(var(--header-group-height, 60px) + 8rem);
    }

    .judgme-reviews__card {
      break-inside: avoid;
      display: flex;
      flex-direction: column;
      margin-bottom: 8px;
      background: #d1e3fc;
      border-radius: 8px;
      overflow: hidden;
      overflow-wrap: anywhere;
    }

    .judgme-reviews__card-photo {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 4;
      background-position: bottom;
      background: var(--card-bg, #fff);
      overflow: hidden;
    }

    .judgme-reviews__card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    .judgme-reviews__card-body {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      padding: 0.625rem 0.75rem 0.75rem;
    }

    .judgme-reviews__card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .judgme-reviews__card-stars {
      display: inline-flex;
      gap: 1px;
      color: #ffa41c;

      svg {
        width: 14px;
        height: 14px;
      }
    }

    .judgme-reviews__card-flag {
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }

    .judgme-reviews__card-time {
      font-size: 0.75rem;
      color: var(--color-purple);
    }

    .judgme-reviews__card-author-row {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.8125rem;
      color: var(--color-purple);
    }

    .judgme-reviews__card-author {
      font-weight: 500;
    }

    .judgme-reviews__card-verified-wrapper {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }
    .judgme-reviews__card-verified-dot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 12px;
      height: 12px;
      max-width: 12px;
      max-height: 12px;

      svg {
        max-width: 12px;
        max-height: 12px;
      }
    }

    .judgme-reviews__card-verified {
      color: var(--color-purple-light, #6a5b78);
      font-size: 0.75rem;
    }

    .judgme-reviews__card-title {
      margin: 0.125rem 0 0;
      font-weight: 700;
      font-size: 0.9375rem;
      line-height: 1.3;
      color: var(--color-purple);
    }

    .judgme-reviews__card-body-text {
      margin: 0;
      font-size: 1rem;
      line-height: 140%;
      font-weight: 500;
      color: var(--color-purple);
    }

    .judgme-reviews__card-body-text--collapsed {
      display: -webkit-box;
      -webkit-line-clamp: 6;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .judgme-reviews__card-read-more {
      align-self: flex-start;
      margin-top: 0.25rem;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--color-purple);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
    }

    /* Skeleton card. Lives inside `.judgme-reviews__grid` so the CSS-column
       layout flows it the same way real cards flow — no layout jump on swap. */
    .judgme-reviews__card--skeleton {
      gap: 0.5rem;
      padding: 0.75rem;
      background: #d1e3fc;
      pointer-events: none;
    }

    .judgme-reviews__skeleton-line,
    .judgme-reviews__skeleton-photo {
      border-radius: 4px;
      background: linear-gradient(90deg, #c2d8f1 0%, #e0ecfb 50%, #c2d8f1 100%);
      background-size: 200% 100%;
      animation: judgme-reviews-shimmer 1.4s ease-in-out infinite;
    }

    .judgme-reviews__skeleton-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      margin-bottom: 0.5rem;
    }

    .judgme-reviews__skeleton-line {
      height: 0.75rem;
    }

    .judgme-reviews__skeleton-line--stars {
      width: 60%;
      height: 0.875rem;
    }
    .judgme-reviews__skeleton-line--meta {
      width: 45%;
    }
    .judgme-reviews__skeleton-line--title {
      width: 75%;
      height: 0.875rem;
      margin-top: 0.25rem;
    }
    .judgme-reviews__skeleton-line--body {
      width: 100%;
    }
    .judgme-reviews__skeleton-line--body-short {
      width: 70%;
    }

    @media (prefers-reduced-motion: reduce) {
      .judgme-reviews__skeleton-line,
      .judgme-reviews__skeleton-photo {
        animation: none;
      }
    }

    .judgme-reviews__pagination {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      gap: 4px;
      margin-top: 1rem;
      /* Pagination is fixed-shape (prev + 5 numbers + 2 ellipses + next ≈ 9 cells);
         nowrap prevents the next button from dropping to its own line on narrow
         viewports. Buttons themselves shrink via min-width below. */
    }

    .judgme-reviews__pagination:empty {
      display: none;
    }

    .judgme-reviews__page {
      min-width: 28px;
      height: 32px;
      aspect-ratio: 1/1;
      padding: 0 0.25rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #d1e3fc;
      border-radius: 4px;
      background: #d1e3fc;
      color: var(--color-purple);
      font-size: 0.8125rem;
      font-weight: 600;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .judgme-reviews__page:hover:not(:disabled):not(.is-active) {
      background: #d1e3fc;
    }

    .judgme-reviews__page.is-active {
      background: var(--color-purple);
      border-color: var(--color-purple);
      color: #fff;
      cursor: default;
    }

    .judgme-reviews__page:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .judgme-reviews__page--ellipsis {
      border: 0;
      background: transparent;
      cursor: default;
      pointer-events: none;
    }
  }

  @keyframes judgme-reviews-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  @media (min-width: 750px) {
    .judgme-reviews {
      padding-top: clamp(2rem, 4vw, 3.5rem);
      padding-bottom: clamp(2rem, 4vw, 3.5rem);

      .judgme-reviews__inner {
        max-width: 1208px;
      }

      .judgme-reviews__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .judgme-reviews__tabs {
        width: auto;
      }

      .judgme-reviews__rating-strip {
        display: none;

        &:is(.judgme-reviews__rating-strip--desktop) {
          display: flex;
          flex-wrap: nowrap;
          flex: 0 1 auto;
        }
      }

      .judgme-reviews__grid-wrapper {
        background: transparent;
        padding: 0;
        gap: 0.25rem;
      }

      .judgme-reviews__pagination {
        background: var(--card-bg, #fff);
        padding: 0.5rem 0;
        margin-top: 4px;
        border-radius: 4px;
      }

      .judgme-reviews__featured {
        align-items: center;
        gap: 1rem;
        padding: 0.5rem;
      }

      .judgme-reviews__grid {
        background-color: var(--card-bg);
        padding: 0.5rem;
        border-radius: 4px;
      }

      .judgme-reviews__featured-avatar {
        width: 56px;
        height: 56px;
      }

      .judgme-reviews__featured-body {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
      }

      .judgme-reviews__featured-quote {
        font-size: 1.0625rem;
      }

      .judgme-reviews__grid {
        column-count: 5;
        column-gap: 12px;
      }

      .judgme-reviews__card {
        margin-bottom: 12px;
      }
    }
  }
/* END_SECTION:judgme-reviews */

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

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

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

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

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

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

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

/* START_SECTION:main-blog-post (INDEX:48) */
.article-tags.ai-blog-post-date- {
      font-weight: 700;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0;
      color: #755C81;
      @media screen and (max-width:749px){
        font-size: 14px;
        line-height: 100%;
        padding-bottom: 9px;
      }
  }
  .bottom-wraper-blog .post-info__item--type-author {
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 120% !important;
    letter-spacing: 0;
    @media screen and (max-width:749px){
      font-size: 16px !important;
    }
  }
  .newsletter_block {
      background: #43334B;
      padding: 32px;
      border-radius: 16px;
    .email-signup__heading.h3 {
      font-family: Inter;
      font-weight: 700;
      font-size: 24px;
      line-height: 100%;
      letter-spacing: 0;
      color: #fff;
      margin-bottom: 0.5rem;
      padding: 0;
      @media screen and (max-width:749px){
        font-size: 20px;
      }
    }
    .email-signup__subheading {
      color: #fff;
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0;
      margin-bottom: 1rem;
      @media screen and (max-width:749px){
        font-size: 14px;
      }      
    }
    .email-signup__input.paragraph {
      color: #A79BB3;      
    }
    .email-signup__input.paragraph::placeholder{
      color: #A79BB3;
    }
  }
  .related-articles-section {
    padding: 40px 0;
  }

  .related-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .related-heading .small-heading {
    display: block;
    font-weight: 600;
    color: #6a6a6a;
    margin-bottom: 8px;
  }

  .related-heading .main-heading {
    font-size: 28px;
    font-weight: 700;
  }

  .related-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .related-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
  }

  .related-card-image img {
    width: 100%;
    border-radius: 14px 14px 0 0;
    height: 220px;
    object-fit: cover;
  }

  .related-card-content {
    padding: 18px;
  }

  .related-card-content .tag {
    font-size: 12px;
    color: #626262;
    text-transform: capitalize;
  }

  .related-card-content .title {
    font-size: 17px;
    margin: 8px 0;
    font-weight: 700;
    line-height: 1.3;
  }

  .related-card-content .meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #777;
  }
  .c-product-shortcode_image img {
      margin: auto !important;
  }
  h2.wp-block-heading {
      margin-top: 40px !important;
      font-size: 24px;
      margin-bottom: 1rem !important;
      @media (max-width: 749px) {
        font-size: 20px;
        margin-top: 30px !important;
        margin-bottom: 0.5rem !important;
      }
  }
  h4.wp-block-heading {
      margin-top: 1rem !important;
      margin-bottom: 0.5rem !important;
      font-size: 18px;
      @media (max-width: 749px) {
        font-size: 16px;
        margin-top:  1rem !important;
        margin-bottom: 0.5rem !important;
      }
  }
  h3.wp-block-heading {
      font-family: Inter;
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      margin-top: 20px !important;
      @media (max-width: 749px) {
        font-size: 16px;
      }
  }
  .article-contents figure {
    margin: auto;
  }
  .article-contents tbody td {
      background: #BAD1F2;
  }
  .article-contents  figure.wp-block-image.aligncenter.size-full {
    width: 100%;
    margin: auto;
    }
  .article-contents thead th {
  background: #F3F8FE;
  font-weight: 600;
  color:#2B1D39;
  }
  .article-contents tbody td {
    background: #BAD1F2;
  }
  .article-contents tbody td {
    background: #BAD1F2;
    color: #43334B;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
  }
   .article-contents table {
      border-collapse: separate;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 40px;
  }
  .blog-post-content rte-formatter h2:first-child {
    margin-top: 0 !important;
  }
  .blog-post-content .wp-block-list li {
      margin-bottom: 0.6rem;
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .related-cards-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 18px;
      padding-bottom: 10px;
    }

    .related-card {
      min-width: 260px;
      scroll-snap-align: start;
    }
  }

    a.back-to-blog-btn {
        padding-top: 32px;
    }
    .blog-post-featured-image img {
        border-radius: 16px;
    }

    .aricle-banner {
        width: 100%;
        img{
          height: 500px;
          @media screen and (max-width:749px){
            height: 200px;
          }
        }
    }
    .contents-wrap {
      .article-tags, .article-tags span{
      }
      display: flex;
      gap: 50px;
      @media screen and (max-width:1024px){
          gap: 20px;
        }
        @media screen and (max-width:749px){
          flex-direction: row;
          flex-wrap: wrap;
          gap: 40px;
        }
        .article-contents {
          display: flex;
          padding-right: 50px;
          flex-direction: column;
          gap: 50px;
          ul.wp-block-list {
          padding-top: 0px;
          }
        }
        #toc-list {
          gap: 0px;
          display: flex;
          flex-direction: column;
          padding-left: 0px;
          counter-reset: item;
          margin: 0;
          ::before{
            content: counters(item, "") "";
            margin-inline-end: 16px;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(48.59deg, #FF8C21 0%, #F5576E 100%);
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            display: inline-block;
            font-weight: 700;
            font-size: 24px;
            line-height: 120%;
            letter-spacing: 0;
            font-family: var(--font-h2--family);
          }
          ::marker{content: "";}
          .toc-main {
            font-family: var(--font-subheading--family);
            font-weight: 500;
            font-size: 20px;
            line-height: 130%;
            letter-spacing: 0;
            vertical-align: bottom;
            counter-increment: item;
            position: relative;
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #BAD1F2;
            @media screen and (max-width:749px){
              font-size: 16px;
            }
            ::before{ display: none;}
            a {
              font-weight: 700 !important;
            }
            .toc-sub{
              padding-top: 15px;
              padding-left: 15px;
              display: none;
              flex-direction: column;
              gap: 7px;
              li {
              list-style: lower-roman;
              
              }
            }
          }    
        }
        a.back-to-blog-btn {
          font-family: var(--font-subheading--family);
          font-weight: 600;
          font-size: 16px;
          line-height: 100%;
          letter-spacing: 0.1px;
          text-decoration: underline;
          text-underline-offset: 7px;
          margin-top: 1.2rem;
          display: block;
        }
        .toc-main:last-child {
        border: none !important;
        padding-bottom: 0 !important;
        }
        @media screen and (min-width:1025px) {
          .article-contents {
            width: calc(100% - 400px);
          }
          .articl-summury {
            width: 350px;
          }  
        }      
        @media screen and (max-width:1024px){
          .article-contents {
            width: 60%;
            padding-right: 20px;
          }
          .articl-summury {
            width: 40%;
          }
          .blog-post-content *, .articl-summury * {
            max-width: 100%;
          }    
          
        }
        @media screen and (max-width:749px){
          .article-contents,  .articl-summury {
            width: 100%;
            padding-right: 0px;
            border-right: none;
          }
          .article-contents {
            order: 1;
          }
          figure.wp-block-table {
          margin-left: 0;
          }

        }
    }
    .blog-post-comments-container {
      width: 100%;
      max-width: var(--normal-content-width);
      margin: 0 auto;
    }

    .blog-post-comments {
      display: flex;
      flex-direction: column;
      gap: var(--gap-3xl);
    }

    .blog-post-comment__author {
      display: flex;
      align-items: center;
      gap: var(--gap-2xs);
      margin-top: var(--margin-md);
      font-size: var(--font-size--body-sm);
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }

    .blog-post-comments-pagination {
      display: flex;
      justify-content: center;
      gap: var(--gap-2xs);
    }

    .blog-post-comments-pagination,
    .blog-post-comments-pagination a {
      color: var(--color-foreground);
    }

    .blog-post-comments-pagination .current {
      color: var(--color-foreground);
    }

    .blog-post-comments-pagination .current,
    .blog-post-comments-pagination a {
      display: block;
      padding: var(--padding-2xs) var(--padding-xs);
    }

    .blog-post-comments-pagination .current,
    .blog-post-comments-pagination a:hover {
      border-bottom: 1px solid var(--color-foreground);
    }
    ::marker {
      color: #577291;
      font-family: var(--font-h2--family);
    }
    .bottom-wraper-blog{
        display: flex;
        background: #f8f3ee;
        padding: 32px;
        gap: 20px;
        border-radius: 14px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        @media screen and (max-width:1024px){
              gap: 10px;
              padding: 20px;
        }
        @media screen and (max-width:749px){
              padding: 10px;
        }
      .button-link {
          background: #43334B;
          color: #fff;
          display: inline-block;
          fill: #fff;
          text-align: center;
          transition: all .3s;
          padding: 20px 32px;
          border-radius: 64px;
          font-weight: 600;
          font-size: 16px !important;
          line-height: 24px;
          letter-spacing: 0;
          span{          
          font-size: 16px !important;
          line-height: 24px;
          }

      }
        p {
        margin: 0;
        line-height: 1;
        }
        ul.post-info {
          padding-left: 0;
          margin: 10px 0 0;
          line-height: 1;
          .inline-item {
            font-size: 20px;
            font-weight: 600;
            line-height: 26px;
            list-style: none;
            line-height: 1;
          }
          
        }

    }
      @media screen and (max-width:749px){
        .all_blog_btn {
          width: 100%;
          .button-link {
              width: 100%;
          }
        }
        .back-to-blog-btn svg {
          width: 54px;
          height: 54px;
        }
        .contents-wrap {
          .article-contents h1{
            font-size: 32px !important;
                        margin: 0;

          }
          h3{
            font-size:16px !important;
                        margin: 0;
          }
          h2{
            font-size:20px !important;
                        margin: 0;
          }
          h4{
            font-size:16px !important;
                        margin: 0;
          }
          p, span, h3 a, a {
          font-size: 14px !important;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0;

          }
          li, ul{
          font-size: 14px !important;
          font-weight: 500;
          line-height: 100%;
          letter-spacing: 0;

          }
        }
      }
    @media screen and (min-width:1025px){
        .contents-wrap {
          .article-contents h1{
            font-size:80px ;

          }
        }
      }
      @media screen and (max-width:1024px){
        .back-to-blog-btn svg {
          width: 54px;
          height: 54px;
        }
      }
      @media screen and (min-width:750px){

        .articl-summury {
          position: sticky;
          top: 100px;
          align-self: flex-start;
        }
        .contents-wrap {
          .article-contents h1{
            margin: 0;

          }
          h3{
            margin: 0;
          }
          h2{
            margin: 0;
          }
          h4{
            margin: 0;
          }
          p, span, h3 a, a {
          font-size: 16px !important;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0;

          }
          li, ul{
          font-size: 14px !important;
          font-weight: 500;
          line-height: 100%;
          letter-spacing: 0;

          }
        }
      
      }
      .articl-summury aside.article-toc {
        background: #F3F8FE;
        padding: 32px;
        border-radius: 16px !important;
      }
      .article-contents{
        img {
          margin: 10px 0 64px;
          border-radius: 16px;
        }
      }
      .post-info li.inline-item {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .article-contents header {
        gap: 10px;
        display: flex;
        flex-direction: column;
      }
      .bottom-wraper-blog p {
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        color: #43334B;
      }
      .blog-post-content h2 {
        font-family: Inter;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 0;
      }
      .toc-list li::marker {
        color: #F5576E !important;
        font-weight: 700;
        font-size: 24px !important;
        line-height: 120% !important;
        letter-spacing: 0;
      }
    .c-product-shortcode {
      @media screen and (max-width: 749px) {
          flex-direction: column-reverse;
          align-items: stretch;
          gap: 16px;
      }
    }
    .c-product-shortcode_content{
      span.-size {
        font-weight: 700;
        font-size: 18px !important;
        line-height: 120%;
        letter-spacing: 0;
        color:#43334B;
        @media screen and (max-width:749px){
          font-size: 16px !important;
        }
        p {
        font-weight: 500;
        font-size: 16px  !important;
        line-height: 150%;
        letter-spacing: 0;
          @media screen and (max-width:749px){
            font-size: 14px !important;
          }
        }
      }
    }

    /* --- */

    .tag_title {
      display: flex;
      flex-direction: column;
      row-gap: 8px;
      width: 100%;
    }

    .blog-post-item .card-title{
      margin: 0px;
    }


    /* --------------------------------------- articl-summary */
    @media screen and (min-width: 750px) {
      .toc-main__link {
        font-size: 16px;
      }
    }

    @media screen and (max-width: 749px) {
      .toc-main__link {
        font-size: 14px;
      }
    } 

    .articl-summary__heading {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 700;
      font-size: 24px;
      line-height: 29px;

      color: #43334B;
      margin-bottom: 0;
    }

    .toc-main__link {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 700;

      line-height: 150%;
      color: #43334B;
    }

    /* --------------------------------------- blog-post-content */
    @media screen and (min-width: 750px) {
      .blog-post-content h2 > strong,
      .blog-post-content h2 {
        font-size: 24px !important;
        margin-bottom: 32px !important;
      }

      .blog-post-content h3 > strong,
      .blog-post-content h3 { 
        font-size: 18px !important;
      }
    }

    @media screen and (max-width: 749px) {
      .blog-post-content h2 > strong,
      .blog-post-content h2 {
        font-size: 20px !important;
        margin-bottom: 24px !important;
      }

      .blog-post-content h3 > strong,
      .blog-post-content h3 { 
        font-size: 16px !important;
      }
    } 

    .blog-post-content h2 > strong,
    .blog-post-content h2 {
      font-family: 'Inter' !important;
      font-style: normal !important;
      font-weight: 700 !important;
      line-height: 29px !important;

      color: #43334B !important;
    }

    .blog-post-content h3 > strong,
    .blog-post-content h3 {
      font-family: 'Inter' !important;
      font-style: normal !important;
      font-weight: 700 !important;
      line-height: 120% !important;

      color: #43334B !important;

      margin-bottom: 16px !important;
    }
/* END_SECTION:main-blog-post */

/* START_SECTION:main-blog (INDEX:49) */
nav.pagination {
  display: flex;
  gap: 10px;
  margin-top: 64px;
  @media screen and (max-width: 1200px){
      margin-top: 32px;
    }

  span, a {
      padding: 10px;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      border: none;
      color: #43334B;
      font-size: 16px;
      margin: 0;
      width: 58px;
      height: 56px;
      display: flex;
      background: #fff;
  }
  span.pagination-current {
    background: linear-gradient(48.59deg, #FF8C21 0%, #F5576E 100%);
    color: #fff;
  }
}
  /**
   * Blog posts page layout
   */
  .blog-posts {
    --page-content-width: var(--narrow-page-width);
    --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
    --columns-gap: 36px;
    --rows-gap: 36px;

  }

  .blog-posts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
    /* column-gap: var(--columns-gap); */
    /* row-gap: var(--rows-gap); */
    @media screen and (max-width: 1200px)  and (min-width: 992px){
      column-gap: 8px !important;
      row-gap: 8px !important;
      grid-template-columns: repeat(3, 1fr);
    }
    @media screen and (max-width: 991px)  and (min-width: 750px){
      column-gap: 8px !important;
      row-gap: 8px !important;
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width: 749px){
      column-gap: 12.5px !important;
      row-gap: 12.5px !important;
      grid-template-columns: 1fr !important;
    }
  }
  .blog-post-item {
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-20));
    padding: 0 1rem 1rem;
  }

  .blog-post-item:has(.blog-post-card__image-container) {
    border: none;
    padding: 0;
  }
  .blog-post-title,  .blog-post-title .h3{
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    font-family: var(--menu-top-level-font-family);
  }
  rte-formatter.blog-post-card__content-text.rte.rte {
    color: #103461;
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 0px;
}
  .article-tags{
    font-size: 12px !important;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;
    align-self: center;
    flex-wrap: wrap;
    color: #577291;
  }
  blog-posts-list rte-formatter.spacing-style.text-block p {
    font-size: 16px;
    @media screen and (max-width: 1200px){
      font-size: 14px;
    }
  }
/* END_SECTION:main-blog */

/* START_SECTION:main-cart (INDEX:50) */
@media screen and (min-width: 1225px) {
    .cart-page {
      gap: 16px;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 438px !important;
      max-width: calc(754px + 438px + 16px) !important;
      width: 100% !important;
      margin: 0 auto !important;
    }
  }

  @media screen and (max-width: 1224px) {
    .cart-page { 
      display: flex !important;
      flex-direction: column;
      align-items: center;
      padding: 16px;
      gap: 4px;
    }

    .cart-page__items {
      width: 100%;
    }

    .cart-page_order-too {
      margin-top: 12px !important;
    }
  }

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

  .cart-page {
    max-width: 1208px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 64px;
    


    --cart-font-size--2xs: var(--font-size--2xs);
    --cart-font-size--xs: var(--font-size--xs);
    --cart-font-size--sm: var(--font-size--sm);
    --cart-font-size--md: var(--font-size--md);
    --cart-font-size--2xl: var(--font-size--2xl);

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

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

  .cart-page__title {
    padding-bottom: 16px;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

    .cart__container--extend {
      height: 100%;
    }
  }

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

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

  .cart-page_order-too {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;

    width: 100%;

    background: #F3F8FE;
    border-radius: 16px;
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection-shop (INDEX:52) */
.shop-collection {
    /* Same gutter system as the index sections: content caps at the page width
       (1440), gutter 0.25rem mobile / 7.25rem desktop applied as padding outside it. */
    --page-margin: 0.25rem;

    box-sizing: border-box;
    padding-block: var(--shop-padding-block-start) var(--shop-padding-block-end);
    max-width: var(--page-width);
    margin: 0 auto;
    display: block;
    padding-inline: var(--page-margin);

    .shop-collection__header {
      .shop-collection__heading {
        margin: 0;
        font-family: var(--font-heading--family);
        font-size: 1.75rem;
        line-height: 120%;
        font-weight: 700;
      }

      .shop-collection__subheading {
        margin-block: var(--margin-xs) 0;
        color: var(--color-purple);
        font-size: 1rem;
        font-weight: 500;
      }

      .shop-collection__guarantee {
        margin-block-start: 0.5rem;
        display: flex;
      }
    }

    .shop-collection__toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: var(--margin-sm);
      margin-block-start: var(--margin-lg);
      background-color: var(--color-white);
    }

    .shop-collection__filters {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: var(--margin-xs);
    }

    .shop-collection__filters-label {
      color: var(--color-purple);
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 140%;
    }

    .shop-collection__pills {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.25rem;
    }

    .shop-collection__pill {
      appearance: none;
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      border: none;
      border-radius: 0.25rem;
      background: var(--color-background);
      color: var(--color-purple);
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 600;
      line-height: 140%;
      white-space: nowrap;
      transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

    .shop-collection__pill:hover {
      border-color: var(--color-purple);
    }

    .shop-collection__pill:focus-visible {
      outline: 2px solid var(--color-purple);
      outline-offset: 2px;
    }

    .shop-collection__pill[aria-checked='true'] {
      background: var(--color-purple);
      border-color: var(--color-purple);
      color: var(--color-white);
    }

    .shop-collection__guarantee {
      margin-inline-start: auto;
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 0.2em;
      display: none;
      align-items: center;
      gap: 0.5ch;
      font-size: 0.875rem;
      font-weight: 500;

      margin-inline-start: 0;
      appearance: none;
      border: 0;
      background: transparent;
      padding: 0;
      font-family: inherit;
      cursor: pointer;

      &:focus-visible {
        outline: 2px solid var(--color-purple);
        outline-offset: 2px;
      }
    }

    .shop-collection__groups {
      margin-block-start: var(--margin-lg);
    }

    .shop-collection__group:not([hidden]) + .shop-collection__group:not([hidden]) {
      margin-block-start: var(--margin-xl);
    }

    .shop-collection__group-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      margin-block: var(--margin-lg);
    }

    .shop-collection__group-heading::before,
    .shop-collection__group-heading::after {
      content: '';
      flex: 1 1 0;
      height: 1px;
      background: var(--color-border);
    }

    .shop-collection__group-icon {
      display: inline-flex;
      flex: 0 0 auto;
      width: 1rem;
      height: 1rem;
      color: var(--color-purple);
    }

    .shop-collection__group-icon svg {
      width: 100%;
      height: 100%;
    }

    .shop-collection__group-title {
      margin: 0;
      font-size: 0.9375rem !important;
      font-family: var(--font-body--family);
      font-style: normal;
      font-weight: 600;
      line-height: 140%;
      color: var(--color-purple);
      white-space: nowrap;
    }

    .shop-collection__grid {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: var(--margin-md);
    }

    .shop-collection__grid-item {
      display: flex;
    }

    .shop-collection__grid-item > * {
      width: 100%;
    }
  }

  @media screen and (min-width: 750px) {
    .shop-collection {
      .shop-collection__header {
        .shop-collection__heading {
          font-size: 2.5rem;
        }

        .shop-collection__guarantee {
          display: none;
        }
      }

      .shop-collection__guarantee {
        display: flex;
        margin-inline-start: auto;
      }

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

  @media screen and (min-width: 990px) {
    .shop-collection .shop-collection__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media screen and (min-width: 1200px) {
    .shop-collection {
      --page-margin: 7.25rem;
    }
  }

  ::view-transition-group(shop-collection-groups) {
    animation-duration: var(--animation-speed, 0.25s);
    animation-timing-function: var(--animation-easing, ease);
  }
/* END_SECTION:main-collection-shop */

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

      @media screen and (min-width: 750px) {
        grid-column: var(--grid-column--desktop);
      }
    }

    .collection-wrapper {
      @media screen and (min-width: 750px) {
        grid-template-columns:
          1fr repeat(
            var(--centered-column-number),
            minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
          )
          1fr;
      }
    }

    .collection-wrapper:has(.facets-block-wrapper--full-width),
    .collection-wrapper:has(.collection-wrapper--full-width) {
      @media screen and (min-width: 750px) {
        grid-column: 1 / -1;
        grid-template-columns:
          minmax(var(--page-margin), 1fr) repeat(
            var(--centered-column-number),
            minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
          )
          minmax(var(--page-margin), 1fr);
      }
    }

    .collection-wrapper:has(.facets--vertical) .facets-block-wrapper--vertical:not(.hidden) ~ .main-collection-grid {
      @media screen and (min-width: 750px) {
        grid-column: var(--facets-vertical-col-width) / var(--full-width-column-number);
      }
    }

    .collection-wrapper:has(.facets-block-wrapper--vertical:not(#filters-drawer)):has(.collection-wrapper--full-width) {
      @media screen and (min-width: 750px) {
        grid-column: 1 / -1;
        grid-template-columns: 0fr repeat(var(--centered-column-number), minmax(0, 1fr)) 0fr;
      }
    }

    :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
      [product-grid-view='default']
      .product-grid__card {
      @media screen and (max-width: 749px) {
        padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
        padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
      }
    }

    :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
      [product-grid-view='mobile-single']
      .product-grid__card {
      @media screen and (max-width: 749px) {
        padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
        padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
      }
    }

    /* Make product media go edge-to-edge by using negative margins */
    :is(.collection-wrapper--full-width) .card-gallery,
    :is(.collection-wrapper--full-width-on-mobile) .card-gallery {
      @media screen and (max-width: 749px) {
        margin-inline-start: calc(-1 * max(var(--padding-xs), var(--padding-inline-start)));
        margin-inline-end: calc(-1 * max(var(--padding-xs), var(--padding-inline-end)));
      }
    }

    /* ------- custom ----- */

    [data-template="collection"] .product-grid-container {
    display: grid;
  }

  [data-template="collection"] .pet_button_design .add-to-cart-button {
    background: #FF8C21;
  }

  [data-template="collection"] .pet_button_design .add-to-cart-button .add-to-cart-text *,
  [data-template="collection"] .pet_button_design .add-to-cart-button .price-top span.tax-note {
    color: #43334B !important;
  }

  [data-template="collection"] .pet_button_design .add-to-cart-button .add-to-cart-text svg path {
    fill: #43334B;
  }

  [data-template="collection"] .pet_button_design .add-to-cart-button .svg-wrapper {
    color: #43334B !important;
  }

  /* BADGE */
  [data-template="collection"] .newbadges {
    border-radius: 0 16px 0 16px;
    padding: 16px;
    background: #51B92C;
    color: #fff;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    width: 100%;
    height: 61px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  /* JDGM */
  [data-template="collection"] .jdgm-widget.jdgm-widget {
    padding: 8px 0 0 16px;
  }

  /* DESKTOP */
  @media screen and (min-width: 1201px) {
    [data-template="collection"] .product-grid--{{ section.id }}.product-grid--grid {
      --product-grid-columns-desktop: repeat(3, 1fr) !important;
    }

    [data-template="collection"] .product-card__content.product-grid__card {
      padding-bottom: 121px !important;
      justify-content: flex-start;
    }

    [data-template="collection"] .add-to-cart-button {
      height: 89px !important;
    }

    [data-template="collection"] product-card .add-to-cart-button {
      padding: 24px !important;
    }
  }

  /* TABLET GRID */
  @media screen and (min-width: 800px) and (max-width: 1200px) {
    [data-template="collection"] [product-grid-view="mobile-single"],
    [data-template="collection"] .product-grid-mobile--large {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

  /* TABLET */
  @media screen and (min-width: 750px) and (max-width: 1200px) {
    [data-template="collection"] span.product-badge.product-badge--sale {
      color: #F3F8FE;
      display: flex;
      flex-direction: column;
      font-family: Inter;
      font-weight: 600;
      font-size: 16px;
      line-height: 150%;
    }

    [data-template="collection"] .product-card__content.product-grid__card {
      padding-bottom: 77px !important;
      justify-content: flex-start;
    }

    [data-template="collection"] .add-to-cart-button {
      height: 61px !important;
    }

    [data-template="collection"] .info-bar__center {
      order: 1 !important;
      width: max-content !important;
    }
  }

  /* MOBILE */
  @media screen and (max-width: 749px) {
    [data-template="collection"] ul.c-product-header_checks li .title {
      width: calc(100% - 20px);
    }

    [data-template="collection"] product-card .product-card__content li.wrap_features {
      font-size: 10px;
    }

    [data-template="collection"] .info-bar__center {
      order: 1 !important;
    }

    [data-template="collection"] [product-grid-view="mobile-single"],
    [data-template="collection"] .product-grid-mobile--large {
      grid-template-columns: 1fr 1fr;
    }

    [data-template="collection"] .product-grid__card {
      padding: 0 !important;
    }

    [data-template="collection"] .card-gallery {
      margin: 0 !important;
    }

    [data-template="collection"] .price-top .current-price {
      font-size: 12px;
    }

    [data-template="collection"] .price-top span.tax-note {
      font-size: 9px !important;
    }

    [data-template="collection"] .original-price {
      font-size: 11px;
    }

    [data-template="collection"] .product-grid {
      gap: 8px;
    }

    [data-template="collection"] product-card .add-to-cart-button {
      padding: 8px !important;
    }

    [data-template="collection"] span.add-to-cart-text {
      gap: 7px;
    }

    [data-template="collection"] ul.c-product-header_checks li {
      gap: 4px;
    }

    [data-template="collection"] .jdgm-preview-badge .jdgm-star {
      font-size: 8px;
      padding: 0 2px 0 0 !important;
    }

    [data-template="collection"] .jdgm-widget.jdgm-widget {
      padding: 4px 0 0 8px;
      font-size: 11px;
      line-height: 150%;
      flex-wrap: wrap;
    }

    [data-template="collection"] .product-card__content.product-grid__card {
      padding-bottom: 64px !important;
      justify-content: flex-start;
    }

    [data-template="collection"] a.contents.feature_img {
      width: 55%;
    }

    [data-template="collection"] .newbadges {
      font-size: 12px;
      line-height: 100%;
      padding: 12px 20px;
      height: 39px;
      justify-content: center;
    }
  }

  /* GLOBAL */

  [data-template="collection"] span.buy-buttons-block {
    position: absolute;
    bottom: 0;
  }

  [data-template="collection"] .product-badges__badge {
    justify-content: flex-start;
    padding: 8px 16px;
  }

  @media screen and (max-width: 1208px) {
    [data-template="collection"] .product-badges__badge {
      padding: 8px 13px;
    }
  }

  @media screen and (max-width: 749px) {
    [data-template="collection"] .product-badges__badge {
      padding: 8px !important;
    }
  }

  [data-template="collection"] .product-badges--top-right {
    width: 100%;
  }
/* END_SECTION:main-collection */

/* START_SECTION:maintenance (INDEX:55) */
.maintenance {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;  
    .details-cont {
      display: flex;
      gap: 36px;
      justify-content: space-between;
    }
    .maintance__grid.maintance__grid--media-left {
        background: #F3F8FE;
        padding: 32px 100px;
        gap: 32px;
        border-radius: 4px 4px 32px 32px;
        @media screen and (min-width:1201px) and (max-width:1400px){
          padding: 32px  40px;
        }
        @media screen and (min-width:750px) and (max-width:1200px){
          padding: 32px;
        }
        @media screen and (max-width:749px){
          padding: 16px;
        }
    }
    .maintance__grid {
      display: flex;
      gap: 4px;
    }
    .cont-wrap {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        .cont-para {
          font-weight: 500;
          font-size: 14px;
          line-height: 100%;
          letter-spacing: 0;
          color: #755C81;
        }
    }
    .maintance__buttons a.button {
      background: #43334B;
      padding: 16px 24px;
      font-family: Inter;
      font-weight: 600;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0;
      border-radius: 50px;
    }
    @media screen and (min-width: 750px) {
      .maintance__grid {
        align-items: stretch;
      }
      .maintance__grid.maintance__grid--media-right .maintance__media {
        order: 2;
      }
      .maintance__grid.maintance__grid--media-right .maintance__content {
        order: 1;
      }
    }

    .maintance__media {
      position: relative;
      width: 213px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: center;
      justify-content: center;
    }

    .maintance__image {
      display: block;
      width: 100%;
      height: auto;
      border-radius: var(--radius-2, 8px);
      max-width: 213px;
      @media screen and (max-width: 749px) {
        max-width: 83px;
      }
    }

    .maintance__content {
      width: calc(100% - 2px);
      border-radius: 4px 16px 16px 4px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .maintance__eyebrow {
      font: inherit;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgb(var(--color-foreground-secondary-rgb, 120 120 120));
      margin: 0;
    }

    .maintance__heading :is(h1,h2,h3,h4,h5,h6) {
      margin: 0;
    }

    .maintance__body {
      max-width: 100%;
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0;
      color: #43334B;
    }

    .maintance__buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
    }

    .maintance__features {
      display: grid;
      gap: 16px;
      margin-top: 8px;
    }

    @media screen and (min-width: 750px) {
      .maintance__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .maintance__feature {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .maintance__feature-title {
      font-weight: 600;
      font-size: 18px;
      line-height: 150%;
      letter-spacing: 0;
      color: #43334B;
    }

    .maintance__feature-text {
      color: rgb(var(--color-foreground-secondary-rgb, 120 120 120));
    }
    .post_name {
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        color: #755C81;
        margin-top: 0;
    }
    .dr_name {
        font-family: var(--font-paragraph--family);
        font-weight: 700;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 0;
        margin-bottom: 0;
        color: #43334B;
    }
    .name_post {
      padding: 24px 32px;
      background: #fff;
      border-radius: 4px 4px 4px 16px;
      position: relative;
    }
    .plus_sign_dr {
      position: absolute;
      top: 6px;
      right: 6px;
    }
    .header_block_inner {
        max-width: 750px;
        margin: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
      *{
        margin:0;
      }
      p {
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        text-align: center;
      }
    }
    .header_block {
      background: #F3F8FE;
      border-radius: 32px 32px 4px 4px;
      padding: 32px;
    }
    .maintance__heading {
    display: flex;
    gap: 20px;
    align-items: center;
    }
    .block_head {
      font-weight: 700;
      font-size: 24px;
      line-height: 100%;
      letter-spacing: 0;
      color: #43334B;
      @media screen and (max-width:749px){
          font-size: 16px;
          line-height: 150%;
      }
    }
    .sub-head {
        font-weight: 700;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
        color: #755C81;
    }
    .maintenance h2 {
        line-height: 100%;
        letter-spacing: 0;
        color: #43334B;
    }
    @media screen and (min-width:1201px){
        .maintance_media_block {
            padding: 25px;
        }
    }
    @media screen and (min-width:750px) and (max-width:1200px){
      .maintance_media_block {
        padding: 0px 20px;
      }
      .maintance__body {
        /* display: none; */
      }
      .maintance__media {
        width: calc(40% - 2px);
      }
      .maintance__content {
        width: calc(60% - 2px);
      }
      .details-cont {
        gap: 4px;
        flex-direction: column;
      }
    }
    @media screen and (max-width:749px){
        .sub-head, .header_block_inner, .header_block_inner p  {
        text-align: left;
        }
        .details-cont {
        gap:  4px;
        flex-direction: column;
        }
        .maintance__media, .maintance__content {
        width: 100%;
        }
        .maintance__grid {
        gap: 4px;
        flex-wrap: wrap;
        }
        .maintance__body {
        /* display: none; */
        }
        .name_post {
        padding: 16px;
        border-radius: 4px;
        }
        .maintance__content {
        gap: 16px;
        }
        .maintance__buttons a.button {
        width: 100%;
        }
        .maintance__buttons {
        gap: 16px;
        }
        img.maintance__icon {
        width: 20px !important;
        }
        .maintance__feature-title {
        font-size: 16px;
        }
        .header_block {
            padding: 16px !important;
        }
    }
  }
/* END_SECTION:maintenance */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* START_SECTION:micronutrient-formula (INDEX:59) */
.shopify-section:has(> .micronutrient-formula) {
    padding-inline: 4px;
    margin-bottom: 4px;
  }
  .shopify-section:has(> .micronutrient-formula) > .micronutrient-formula {
    grid-column: 1 / -1;
    padding: 0.5rem 0.5rem;
    padding-inline: var(--mnf-padding-inline, 0.5rem);
  }

  .micronutrient-formula {
    background: linear-gradient(95deg, #ff8c21 0%, #f5576e 100%);
    color: #fff;
    border-radius: 4px;
    transition: background 0.3s ease;

    &:has([data-expanded='false']) {
      background: var(--card-bg);

      .micronutrient-formula__heading {
        color: var(--color-purple);
      }

      .micronutrient-formula__toggle {
        color: #95b3eb;
      }
    }

    .micronutrient-formula__inner {
      width: 100%;
      max-width: var(--page-width, 100%);
      margin-inline: auto;
    }

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

    .micronutrient-formula__intro {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-weight: 500;
    }

    .micronutrient-formula__heading {
      margin: 0;
      font-weight: 600;
      font-size: 1rem !important;
      line-height: 140%;
      color: #fff;
      font-family: var(--font-body--family);
    }

    .micronutrient-formula__intro-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.5rem;
      width: 100%;
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .micronutrient-formula__toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      color: #fff;

      svg {
        width: 20px;
        height: 20px;
        transition: transform 0.2s ease;
      }
    }

    .micronutrient-formula__panel[data-expanded='true'] .micronutrient-formula__toggle svg {
      transform: rotate(45deg);
    }

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

    .micronutrient-formula__description {
      font-size: 1rem;
      line-height: 140%;
      font-weight: 500;
      color: #fff;

      :is(p, :first-child) {
        margin: 0;
      }

      :is(p) + p {
        margin-top: 0.5rem;
      }
    }

    .micronutrient-formula__more {
      align-self: flex-start;
      color: #fff;
      font-size: 1rem;
      line-height: 1.4;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 1px;
    }

    .micronutrient-formula__cards-wrap {
      position: relative;
    }

    .micronutrient-formula__cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .micronutrient-formula__card {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      padding: 0.625rem 0.5rem;
      background: #fff;
      border-radius: 6px;
      color: var(--color-purple);
      min-width: 0;
      position: relative;
      overflow: clip;
    }

    .micronutrient-formula__card:first-of-type {
      padding-right: 2rem;
      .micronutrient-formula__card-decor {
        top: -1rem;
        right: -2rem;
      }
    }

    .micronutrient-formula__card:nth-of-type(2) {
      padding-left: 2rem;
      .micronutrient-formula__card-decor {
        top: -1rem;
        left: -2rem;
      }
    }

    .micronutrient-formula__card:nth-of-type(3) {
      padding-right: 2rem;
      .micronutrient-formula__card-decor {
        bottom: -1rem;
        right: -2rem;
      }
    }

    .micronutrient-formula__card:nth-of-type(4) {
      padding-left: 2rem;
      .micronutrient-formula__card-decor {
        bottom: -1rem;
        left: -2rem;
      }
    }

    .micronutrient-formula__card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.5rem;
      min-height: 36px;
    }

    .micronutrient-formula__card-heading {
      margin: 0;
      font-family: inherit;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.2;
      color: var(--color-purple);
    }

    .micronutrient-formula__card-decor {
      width: 60px;
      height: auto;
      object-fit: contain;
      flex-shrink: 0;
      position: absolute;
    }

    .micronutrient-formula__card-items {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
      margin: 0;
    }

    .micronutrient-formula__card-item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .micronutrient-formula__card-item-name {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.3;
      color: var(--color-purple);
      font-weight: 600;
    }

    .micronutrient-formula__card-item-value {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.3;
      font-variant-numeric: tabular-nums;
      color: var(--color-purple-light);
      text-align: right;
      font-weight: 500;
    }

    .micronutrient-formula__pill {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: clamp(72px, 20%, 120px);
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f97339 0%, #e94d1c 100%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .micronutrient-formula__pill-image {
      width: 95%;
      height: auto;
      display: block;
    }

    .micronutrient-formula__example-label {
      margin: 0;
      font-size: 0.875rem;
      color: #fff;
    }

    .micronutrient-formula__bullets {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .micronutrient-formula__bullets--desktop {
      display: none;
    }

    .micronutrient-formula__bullet {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .micronutrient-formula__bullet-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      margin-top: 0.05rem;
      background: #fff;
      border-radius: 50%;
      color: #e94d1c;

      svg {
        width: 12px;
        height: 12px;
      }
    }
  }

  @media (max-width: 749.98px) {
    .micronutrient-formula__panel[data-expanded='false'] {
      .micronutrient-formula__intro-body,
      .micronutrient-formula__cards-wrap,
      .micronutrient-formula__example-label,
      .micronutrient-formula__bullets {
        display: none;
      }
    }
  }

  @media (min-width: 750px) {
    section:has(> .micronutrient-formula) {
      padding-inline: 0 !important;
    }
    .micronutrient-formula {
      border-radius: 0;
      background: linear-gradient(95deg, #ff8c21 0%, #f5576e 100%) !important;

      .micronutrient-formula__inner {
        max-width: 1208px;
      }

      .micronutrient-formula__heading {
        color: white !important;
      }

      .micronutrient-formula__panel {
        padding: 7rem 1rem !important;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        column-gap: 3rem;
        row-gap: 1rem;
        align-items: center;
      }

      .micronutrient-formula__intro {
        grid-column: 1;
        grid-row: 1 / -1;
        gap: 0.875rem;
      }

      .micronutrient-formula__cards-wrap {
        grid-column: 2;
        grid-row: 1;
      }

      .micronutrient-formula__example-label {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0.5rem;
      }

      .micronutrient-formula__bullets--mobile {
        display: none;
      }

      .micronutrient-formula__bullets--desktop {
        display: flex;
      }

      .micronutrient-formula__intro-top {
        cursor: default;
      }

      .micronutrient-formula__toggle {
        display: none;
      }

      .micronutrient-formula__heading {
        font-family: var(--font-heading--family, inherit);
        font-weight: 700;
        font-size: 40px !important;
        line-height: 1.15;
        letter-spacing: -0.01em;
      }

      .micronutrient-formula__card {
        padding: 0.875rem 1rem;
      }

      .micronutrient-formula__card:first-of-type {
        padding-right: 4rem;
        .micronutrient-formula__card-decor {
          top: -1rem;
          right: -1rem;
        }
      }

      .micronutrient-formula__card:nth-of-type(2) {
        padding-left: 4rem;
        .micronutrient-formula__card-decor {
          top: -1rem;
          left: -1rem;
        }
      }

      .micronutrient-formula__card:nth-of-type(3) {
        padding-right: 4rem;
        .micronutrient-formula__card-decor {
          bottom: -1rem;
          right: -1rem;
        }
      }

      .micronutrient-formula__card:nth-of-type(4) {
        padding-left: 4rem;
        .micronutrient-formula__card-decor {
          bottom: -1rem;
          left: -1rem;
        }
      }

      .micronutrient-formula__card-decor {
        width: 70px;
      }

      .micronutrient-formula__card-heading {
        font-size: 1.0625rem;
      }

      .micronutrient-formula__card-item-name,
      .micronutrient-formula__card-item-value {
        font-size: 1rem;
      }
    }
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
/* END_SECTION:micronutrient-formula */

/* START_SECTION:password (INDEX:65) */
.section--password {
    --section-min-height: calc(100svh - 8rem);
  }

  .password-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-block-start: var(--padding-xl);
  }

  .password-enter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    padding-block: var(--padding-xl);
  }

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

    a {
      display: flex;
    }

    svg {
      display: inline;
      height: 1.3em;
      color: var(--color-foreground);
    }
  }

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

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

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

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

    &:hover {
      color: var(--color-primary-hover);
      text-decoration: none;
    }
  }

  .password-dialog {
    max-width: 100vw;
    max-height: 100svh;
    width: 100vw;
    height: 100svh;
    border: none;
    transition: opacity var(--animation-values), display var(--animation-speed) allow-discrete,
      overlay var(--animation-speed) allow-discrete;

    &::backdrop {
      display: none;
    }
  }

  .password-dialog[open] {
    opacity: 1;
    top: 0;
    left: 0;
  }

  @starting-style {
    .password-dialog[open] {
      opacity: 0;
    }
  }

  .password-dialog:not([open]) {
    opacity: 0;
  }

  @starting-style {
    .password-dialog:not([open]) {
      opacity: 1;
    }
  }

  .password-dialog__close-button {
    cursor: pointer;
  }

  .password-dialog__header {
    position: absolute;
    top: 0;
    right: 0;
    padding: var(--padding-lg);
    z-index: var(--layer-raised);
  }

  .password-dialog__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
    height: 100%;
    transition: transform var(--animation-values);
  }

  .password-dialog__content .email-signup__message {
    padding-block-start: var(--padding-xl);
  }

  .password-dialog[open] .password-dialog__content {
    transform: translateY(0);
  }

  @starting-style {
    .password-dialog[open] .password-dialog__content {
      transform: translateY(1em);
    }
  }

  .password-dialog:not([open]) .password-dialog__content {
    transform: translateY(1em);
  }

  @starting-style {
    .password-dialog:not([open]) .password-dialog__content {
      transform: translateY(0);
    }
  }

  .storefront-password-form {
    max-width: 400px;
    width: 100%;
  }

  .email-signup__input-group,
  .password-dialog__submit-button {
    width: 100%;

    @media screen and (min-width: 750px) {
      width: auto;
    }
  }
/* END_SECTION:password */

/* START_SECTION:predictive-search (INDEX:68) */
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none; /* stylelint-disable-line */
  }

  .predictive-search-dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-base);
  }

  .search-action .predictive-search {
    z-index: calc(var(--layer-header-menu) + 2);
  }

  .search-action .search-modal .predictive-search {
    z-index: var(--layer-window-overlay);
  }

  .header__column--right .predictive-search-form__content-wrapper {
    right: 0;
    left: unset;
  }

  .search-modal .predictive-search-form__content-wrapper {
    width: 100%;

    @media screen and (min-width: 750px) {
      height: fit-content;
    }
  }

  .dialog-modal .predictive-search-form__header-inner {
    @media screen and (min-width: 750px) {
      border: 0;
    }
  }

  .header[transparent] :is(.predictive-search):not(:focus-within) {
    background-color: transparent;
  }

  .header[transparent] .predictive-search-form__header-inner {
    border-color: var(--color-foreground);
  }

  .search-modal__content .predictive-search-form__content {
    max-height: var(--modal-max-height);
  }

  .predictive-search:has(.predictive-search-dropdown) .search-input {
    outline-color: transparent;
  }

  .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;

    @media screen and (max-width: 749px) {
      border-bottom-color: transparent;
    }
  }

  .predictive-search:has(.predictive-search-dropdown[aria-expanded='true'])
    .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: var(--search-border-radius);

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

  .dialog-modal .predictive-search-form__header {
    border: 0;
    border-radius: 0;
    background-color: var(--color-background);
    border-bottom: var(--style-border-width) solid var(--color-border);

    @media screen and (min-width: 750px) {
      padding: var(--padding-2xs) var(--padding-2xs) 0;
      border-bottom: var(--search-border-width) solid var(--color-border);
    }

    @media screen and (max-width: 749px) {
      transition: box-shadow 0.2s ease;
      box-shadow: none;
    }
  }

  .search-action .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header:focus-within {
    border-radius: var(--search-border-radius) var(--search-border-radius) 0 0;
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    background-color: var(--color-background);

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

  @media screen and (max-width: 749px) {
    .dialog-modal .predictive-search__close-modal-button {
      padding-inline-start: var(--margin-xs);
      margin-inline-start: 0;
    }
  }

  .dialog-modal[open] {
    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal .predictive-search-form__header:has(.predictive-search-form__header-inner:focus-within) {
    @media screen and (min-width: 750px) {
      border-bottom-color: transparent;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal {
      .predictive-search__reset-button-icon {
        display: none;
      }

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

      .predictive-search-form__content {
        /* The parent has overflow auto, we want to prevent a double scrollbar during animation */
        max-height: 100%;
      }

      .predictive-search-form__content-wrapper {
        box-shadow: none;
      }

      .predictive-search-form__header {
        box-shadow: none;
      }

      .predictive-search-form__footer {
        padding-block: var(--padding-2xl);
      }
    }
  }

  .predictive-search-results__pill {
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-foreground);
    transition: background-color var(--animation-speed-medium) var(--animation-timing-hover),
      box-shadow var(--animation-speed-medium) var(--animation-timing-bounce),
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    margin: 2px;

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

  .predictive-search-results__pill mark {
    background-color: transparent;
    font-weight: 200;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .predictive-search-results__pill:focus,
  .predictive-search-results__pill:hover,
  .predictive-search-results__card--query:is([aria-selected='true'], :focus-within) .predictive-search-results__pill {
    --pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));

    background-color: var(--pill-background-color);
    outline: var(--border-width-sm) solid var(--color-border);
    border: var(--border-width-sm);
    text-decoration: none;
  }

  .predictive-search-results__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size--body-md);
    font-weight: 500;
    margin-block: var(--margin-sm) var(--margin-xs);
    width: 100%;
    text-transform: var(--title-case);

    &:first-of-type {
      margin-block-start: 0;
    }

    @media screen and (max-width: 749px) {
      margin-block: var(--margin-lg) var(--margin-sm);
    }
  }

  .predictive-search-results__wrapper.predictive-search-results__wrapper-queries {
    margin-bottom: var(--margin-lg);
    padding-inline: var(--padding-xl);
    gap: var(--gap-2xs);
  }

  .predictive-search-results__card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-margin-block: calc(var(--title-font-size) + var(--title-margin-block) + var(--padding-sm))
      calc(var(--padding-xl) + var(--button-padding-block) * 2);
    transition: transform var(--animation-speed-medium) var(--animation-timing-default),
      background-color var(--animation-speed-medium) var(--animation-timing-hover),
      border-color var(--animation-speed-medium) var(--animation-timing-hover);

    &:nth-last-child(3) {
      scroll-snap-align: end;
    }

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

  .recently-viewed-wrapper .predictive-search-results__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .predictive-search-results__card--product,
  .recently-viewed-wrapper .predictive-search-results__card--product {
    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }

    &:hover {
      background-color: var(--card-bg-hover);
      border-radius: var(--product-corner-radius);
      padding: calc(var(--padding-2xs) + 2px);
      margin: calc((var(--padding-2xs) + 2px) * -1);
    }

    &:is([aria-selected='true'].keyboard-focus, &:focus-visible, &:has(.resource-card:focus-visible)) {
      background-color: var(--card-bg-hover);
      padding: calc(var(--padding-2xs) + 1px);
      margin: calc((var(--padding-2xs) + 1px) * -1);
      outline: var(--border-width-sm) solid var(--color-border);
      border-radius: calc(var(--product-corner-radius) + 1px);
      border-color: var(--card-border-focus);
    }
  }

  .predictive-search-results__card:not(.predictive-search-results__card--product) {
    padding: var(--padding-sm);
    border: var(--border-width-sm) solid var(--color-border);
    border-radius: var(--card-corner-radius);
    width: 60cqi;
    content-visibility: visible;

    @media screen and (min-width: 750px) {
      width: 27.5cqi;
    }

    &:hover {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &[aria-selected='true'].keyboard-focus {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &:active {
      transform: scale(0.97);
      transition: transform var(--animation-speed-medium) var(--animation-timing-active);
    }
  }

  @keyframes search-element-scale-in {
    0% {
      transform: scale(0.95);
      opacity: 0;
    }

    40% {
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes search-element-scale-out {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(0.95);
      opacity: 0;
    }
  }

  @keyframes search-element-slide-in-top {
    from {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }

    to {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }
  }

  @keyframes search-element-slide-out-top {
    from {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }

    to {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }
  }

  @keyframes content-slide {
    from {
      transform: translateY(var(--slide-from, 0));
      opacity: var(--slide-opacity-from, 1);
    }

    to {
      transform: translateY(var(--slide-to, 0));
      opacity: var(--slide-opacity-to, 1);
    }
  }

  .predictive-search-results__list {
    --slide-width: 27.5%;
    --slideshow-gap: var(--gap-md);

    /* Make space for the outline to be visible */
    padding-block-start: var(--border-width-sm);
  }

  .predictive-search-results__list slideshow-arrows {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .predictive-search-results__no-results {
    animation-delay: 100ms;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  .predictive-search-results__no-results,
  .predictive-search-results__wrapper,
  .predictive-search-results__wrapper-products .predictive-search-results__card {
    animation: search-element-slide-up var(--animation-speed-medium) var(--animation-timing-bounce) backwards;
  }

  .predictive-search-results__no-results:last-child {
    margin-block: var(--margin-lg);
    text-align: center;
  }

  slideshow-slide .resource-card {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__list,
  .predictive-search-results__wrapper {
    animation-duration: var(--animation-speed-medium);
  }

  .predictive-search-results__wrapper-queries {
    animation-delay: 50ms;
  }

  .predictive-search-results__list:nth-of-type(2) {
    animation-delay: 150ms;
  }

  .predictive-search-results__list:nth-of-type(3) {
    animation-delay: 200ms;
  }

  .predictive-search-results__list:nth-of-type(4) {
    animation-delay: 250ms;
  }

  .predictive-search-results__list:last-child {
    margin-block-end: 0;
  }

  [data-resource-type] {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__no-results.removing,
  .predictive-search-results__wrapper.removing {
    animation: search-element-slide-down var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__card.removing {
    animation: fadeOut var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__wrapper {
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  @keyframes search-element-slide-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes search-element-slide-down {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(8px);
    }
  }

  .predictive-search-results__card--query {
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
    transform-origin: center;

    &:active {
      transform: scale(0.97);
    }
  }
/* END_SECTION:predictive-search */

/* START_SECTION:privacy-security (INDEX:69) */
.privacy-sec {
  padding: 64px 0;
  @media screen and (max-width:1200px){
    padding: 32px 0;
  }
}

.privacy-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #43334b;
    margin-bottom: 0px;
    line-height: 22px;
    font-family: var(--font-paragraph--family);    

}
.privacy-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top:-10px;
    @media screen and (max-width:749px){
      margin-top:0px;
    }
}
.privacy-header h2 {
  margin-bottom: 15px;
  color: #43334b;
  margin: 0;
}

.privacy-header p {
  max-width: 500px;
  font-size: 16px;
  line-height: 24px;
  color: #43334b;
  margin: 0;
}

/* GRID (desktop) */
.privacy-items {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.privacy-item, .privacy-header {
  flex: 1;
}

.privacy-item .privacy-icon {
  width: 80px;
  margin-bottom: 15px;
}

.privacy-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #43334b;
    line-height: 22px;
    font-family: var(--font-paragraph--family);
}

.privacy-item p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #43334b;
    margin:0;
}

/* MOBILE STYLE (stacked like screenshot) */
@media (max-width: 749px) {
  .image-block {
    order: 2;
}
  .privacy-items {
    flex-direction: column;
    gap: 25px;
  }

  .privacy-header h2 {
  }

  .privacy-item {
    max-width: 100%;
  }
}
/* END_SECTION:privacy-security */

/* START_SECTION:product-information (INDEX:70) */
.product-information {
    gap: var(--gap) 0;
    background: #d1e3fc !important;
  }

  @media screen and (min-width: 750px) {
    .product-details > .group-block {
      padding-top: 0px;
    }
  }

  @media screen and (min-width: 1225px) {
    .product-information__grid {
      gap: 64px;
      grid-template-columns: minmax(0, 464px) minmax(0, 680px) !important;
    }

    .product-information__grid.product-information--media-left {
      justify-content: right;
    }
  }

  @media screen and (min-width: 956px) and (max-width: 1224px) {
    .product-information__grid {
      gap: 36px;
      grid-template-columns: minmax(200px, 464px) minmax(566px, 680px) !important;
    }

    .product-information__grid.product-information--media-left {
      justify-content: right;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 955px) {
    .product-information__grid {
      gap: 36px;
      grid-template-columns: minmax(0, 200px) minmax(0, 680px) !important;
    }

    .product-information__grid.product-information--media-left {
      justify-content: right;
    }
  }

  @media (min-width: 750px) {
    .product-information__grid {
      display: grid;
      justify-content: space-between; /* allows natural centering if total < container width */
    }
  }

  .product-information__grid {
    max-width: 1208px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .product-information__media {
    padding-right: 0px !important;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  @media screen and (min-width: 749px) {
    .product-information__media {
      max-width: 464px;
      height: 100%;

      media-gallery {
        position: sticky;
        top: calc(var(--header-height) + 3em);
      }
    }
  }

  .product-information__media {
    order: 0;
    width: 0;
    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-information__grid:has(.product-information__media:empty) {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(:has(.product-information__media:empty)) {
      /* 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(:has(.product-information__media:empty)),
      .product-information__grid:not(:has(.product-information__media:empty)) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        :has(.product-information__media:empty)
      ).product-information--media-left {
      grid-template-columns: 1fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        :has(.product-information__media:empty)
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    max-width: var(--sidebar-width);
  }

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

  /* === Variant D (A/B-Test) — left column wraps intro + media. Right column is
     .product-details intact. Two independent flex/block flows means no shared
     row tracks between columns, so col-2 items (card → trust list → configurator
     → footer) stack tightly regardless of col-1 content height. === */

  /* Desktop: wrapper is a single grid item in col 1, stacks its children vertically. */
  @media screen and (min-width: 750px) {
    :is(.variant-d, .variant-e) .variant-d-col-left {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  }

  /* Mobile: flatten the wrapper AND product-details so intro / media / card / rest
     all become direct grid items, then use `order` to interleave card between
     intro and media. */
  @media screen and (max-width: 749px) {
    :is(.variant-d, .variant-e) .product-information__grid {
      display: grid;
      grid-template-columns: 1fr;
      padding: 0 0.25rem;
      gap: 0.25rem;
    }

    :is(.variant-d, .variant-e) .variant-d-col-left,
    :is(.variant-d, .variant-e) .product-details,
    :is(.variant-d, .variant-e) .product-details > .group-block,
    :is(.variant-d, .variant-e) .product-details > .group-block > .group-block-content {
      display: contents;
    }

    :is(.variant-d, .variant-e) .product-details-header__variant-d-intro {
      order: -2;
    }

    :is(.variant-d, .variant-e) .product-details-header__variant-d-card {
      order: -1;
    }
  }
/* END_SECTION:product-information */

/* START_SECTION:product-list (INDEX:71) */
.ui-test-product-list:has(.unsere-test):before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      /*opacity: .2;*/
      --background-overlay: "";
      background-position: center right;
      background-repeat: repeat-x;
      background-size: 60% auto;
      transition: background .3s, border-radius .3s, opacity .3s;
      mix-blend-mode: initial;
      background-image: url(/cdn/shop/files/Union.svg?v=1771429331);
  }
  .ui-test-product-list:has(.unsere-test) {
      background: linear-gradient(45.59deg, #ff8c21, #f5576e);
      background-color: transparent;
  }
  .unsere-test .product-badges__badge {
    background: #D1E3FC;
    .product-badge.product-badge--sale {
      color: #43334B;
    }

    

}

 
      .ctm-product .resource-list--grid {
          display: flex;
          justify-content: center;
      }

      .ctm-product .resource-list--grid .resource-list__item {
          min-width: 470px;
          height: 100%;
      }

      .ctm-product .section-resource-list__content .shopify-block:has(.button-with-icon) .button-with-icon {
          justify-content: center;
      }

      @media only screen and (min-width: 750px) and (max-width: 1024px) {
        .ctm-product .resource-list--grid .resource-list__item {
            min-width: 350px;
        }
      }

      @media only screen and (max-width: 749px) {
          .ctm-product .section-resource-list__content .shopify-block:has(.button-with-icon) .button-with-icon {
              justify-content: start;
          }
      }
/* END_SECTION:product-list */

/* START_SECTION:product-recommendations (INDEX:72) */
.product-recommendations__skeleton-item {
    aspect-ratio: 3 / 4;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity);
    border-radius: 4px;
  }

  @media screen and (max-width: 749px) {
    .product-recommendations__skeleton-item:nth-child(2n + 1) {
      display: none;
    }
  }

  product-recommendations:has([data-has-recommendations='false']) {
    display: none;
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:results-preview (INDEX:76) */
.shopify-section:has(> .results-preview) > .results-preview {
    grid-column: 1 / -1;
  }

  .results-preview {
    --page-margin: 0.25rem;
    position: relative;
    isolation: isolate;
    display: flex;
    overflow: hidden;
    min-height: var(--rp-min-height-mobile, 600px);
    padding-block: var(--rp-padding-top-mobile, 24px) var(--rp-padding-bottom-mobile, 24px);
    color: var(--color-purple);

    .results-preview__media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .results-preview__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--rp-focal-mobile, 50% 35%);
    }

    /* Light scrim so the dark heading stays legible over the photo. */
    &::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        0deg,
        rgba(209, 227, 252, 0.8) -5%,
        rgb(255 255 255 / 0%) 50%,
        rgba(209, 227, 252, 1) 110%
      );
      pointer-events: none;
    }

    .results-preview__inner {
      box-sizing: border-box;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
    }

    .results-preview__header {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-block-end: 12.5rem;
    }

    .results-preview__heading {
      margin: 0;
      font-size: clamp(1.5rem, 6vw, 2rem);
      line-height: 1.15;
      text-wrap: balance;
    }

    .results-preview__subheading {
      margin: 0;
      max-width: 32rem;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .results-preview__card {
      margin-top: auto;
      min-height: 380px;
      display: block;
      border-radius: 0.25rem;
      background: #fff;
      box-shadow: 0 0.5rem 2rem rgb(43 23 60 / 0.12);
      overflow: hidden;
    }

    .results-preview__card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.5rem 0.5rem;
      background: #d6e4fb;
    }

    .results-preview__card-title {
      font-size: 1rem;
      font-weight: 600;
      line-height: 140%;
    }

    .results-preview__card-badge {
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 140%;
      color: rgb(43 23 60 / 0.7);
    }

    .results-preview__body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 0.5rem;
    }

    .results-preview__switch-label {
      margin: 0;
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 140%;
      color: rgb(43 23 60 / 0.7);
    }

    .results-preview__pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
    }

    .results-preview__pill {
      padding: 0.25rem 0.5rem;
      border: none;
      border-radius: 0.25rem;
      background: #e8effb;
      color: var(--color-purple);
      font: inherit;
      font-weight: 600;
      cursor: pointer;
      transition: background-color var(--animation-speed, 0.2s) var(--animation-easing, ease);

      &:hover {
        background: #dbe6fb;
      }

      &[aria-selected='true'] {
        background: var(--color-purple);
        color: #fff;
      }
    }

    .results-preview__panel[hidden] {
      display: none;
    }

    .results-preview__list {
      display: grid;
      grid-template-columns: max-content minmax(0, 1fr) max-content;
      padding-top: 0.5rem;
    }

    /* Subgrid rows share the list's columns (so every bar starts at the same x,
       column 1 sized to the widest name) while staying real boxes we can divide. */
    .results-preview__list .results-preview__row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1 / -1;
      align-items: center;
      column-gap: 0.75rem;
      padding-block: 0.75rem;
    }

    .results-preview__list .results-preview__row:not(:last-child) {
      border-bottom: 1px solid rgb(43 23 60 / 0.08);
    }

    .results-preview__row--head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-block: 0.25rem;
      font-size: 0.8125rem;
      color: var(--color-purple-light);
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 500;
      line-height: 140%;
    }

    .results-preview__name {
      justify-self: start;
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;
    }

    .results-preview__bar {
      height: 0.5rem;
      border-radius: 100vh;
      background: #d6e4fb;
      overflow: hidden;
    }

    .results-preview__bar-fill {
      display: block;
      height: 100%;
      border-radius: inherit;
    }

    .results-preview__bar-fill--red {
      background: #c2402f;
    }
    .results-preview__bar-fill--orange {
      background: #e8743b;
    }
    .results-preview__bar-fill--yellow {
      background: #e3ab3c;
    }
    .results-preview__bar-fill--green {
      background: #5fa84e;
    }

    .results-preview__value {
      justify-self: end;
      min-width: 3rem;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
      text-align: right;
    }

    /* Severity pill panels have no bar, so the badge sits in the last column. */
    .results-preview__badge {
      grid-column: 3;
      justify-self: end;
      padding: 0.05rem 0.75rem;
      border-radius: 100vh;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .results-preview__badge--red {
      background: #c2402f;
    }
    .results-preview__badge--orange {
      background: #e8743b;
    }
    .results-preview__badge--yellow {
      background: #e3ab3c;
    }
    .results-preview__badge--green {
      background: #5fa84e;
    }

    /* Segmented "urgency" scale: 4 fixed-tint segments; the one at the param's
       level shows solid. Sits in the last column like the badge. */
    .results-preview__segments {
      grid-column: 3;
      justify-self: end;
      display: inline-flex;
      gap: 0.25rem;
    }

    .results-preview__segments span {
      width: 1.5rem;
      height: 0.5rem;
    }

    .results-preview__segments span:first-child {
      border-radius: 100vh 0 0 100vh;
    }

    .results-preview__segments span:last-child {
      border-radius: 0 100vh 100vh 0;
    }

    .results-preview__segments span:nth-child(1) {
      background: #cfe9d2;
    }
    .results-preview__segments span:nth-child(2) {
      background: #f6e8c8;
    }
    .results-preview__segments span:nth-child(3) {
      background: #f6ddd0;
    }
    .results-preview__segments span:nth-child(4) {
      background: #f1d3ce;
    }

    .results-preview__segments--green span:nth-child(1) {
      background: #5fa84e;
    }
    .results-preview__segments--yellow span:nth-child(2) {
      background: #e3ab3c;
    }
    .results-preview__segments--orange span:nth-child(3) {
      background: #e8743b;
    }
    .results-preview__segments--red span:nth-child(4) {
      background: #c2402f;
    }
  }

  @media (min-width: 750px) {
    .results-preview {
      min-height: var(--rp-min-height-desktop, 520px);
      padding-block: var(--rp-padding-top-desktop, 48px) var(--rp-padding-bottom-desktop, 48px);

      .results-preview__image {
        object-position: var(--rp-focal-desktop, 80% 65%);
      }

      .results-preview__header {
        gap: 1rem;
        margin-block-end: 0rem;
      }

      /* Desktop: fade from the left where the content sits. */
      &::before {
        background: linear-gradient(90deg, #d1e3fcd2 0%, #d1e3fc8d 40%, transparent 60%);
      }

      .results-preview__inner {
        gap: 1.5rem;
      }

      .results-preview__card {
        margin-top: 1.5rem;
        max-width: 33rem;
        min-height: 375px;
      }
    }
  }

  @media (min-width: 1200px) {
    .results-preview {
      --page-margin: 7.25rem;
    }
  }
/* END_SECTION:results-preview */

/* START_SECTION:survey-stats (INDEX:85) */
/* Full-bleed coloured band; content stays within the page width. */
  .shopify-section:has(> .survey-stats) > .survey-stats {
    grid-column: 1 / -1;
  }

  .survey-stats {
    --page-margin: 0.25rem;

    padding-block: var(--survey-padding-top-mobile, 40px) var(--survey-padding-bottom-mobile, 40px);
    background: var(--survey-bg, #e7f0fd);
    color: var(--color-purple);

    .survey-stats__inner {
      box-sizing: border-box;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
      grid-template-areas:
        'heading'
        'card'
        'body'
        'button';
    }

    .survey-stats__heading {
      grid-area: heading;
      margin: 0;
      font-size: clamp(1.5rem, 6vw, 2rem);
      line-height: 1.25;
      text-wrap: balance;

      /* Highlight words stay translatable: italic → orange, bold → coral. */
      em {
        font-style: normal;
        color: var(--color-orange);
      }

      strong {
        font-weight: inherit;
        color: var(--color-coral);
      }
    }

    .survey-stats__body {
      grid-area: body;
      font-size: 0.9375rem;
      line-height: 1.5;

      p {
        margin: 0;
      }

      p + p {
        margin-top: 0.75em;
      }
    }

    .survey-stats__cta {
      grid-area: button;
      align-self: start;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      cursor: pointer;
      padding: 14px 28px;
      border-radius: 100vh;
      background: var(--color-purple);
      color: var(--color-white, #fff);
      font-weight: 600;
      line-height: 1.2;
      text-decoration: none;
      transition: opacity var(--animation-speed, 0.2s) var(--animation-easing, ease);

      &:hover {
        opacity: 0.92;
      }
    }

    .survey-stats__card {
      grid-area: card;
    }

    .survey-stats__list {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0;
      list-style: none;
      gap: 0.25rem;
    }

    .survey-stats__stat {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 0.5rem;
      background: var(--survey-card, #fff);
      border-radius: 0.25rem;
      padding: 0.5rem;
    }

    .survey-stats__stat-icon {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }

    /* Keep the label and value aligned even when a row has no icon. */
    .survey-stats__stat-label {
      grid-column: 2;
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;
    }

    .survey-stats__stat-value {
      grid-column: 3;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }
  }

  @media (min-width: 750px) {
    .survey-stats {
      padding-block: var(--survey-padding-top-desktop, 64px) var(--survey-padding-bottom-desktop, 64px);

      .survey-stats__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: clamp(2rem, 5vw, 5rem);
        row-gap: 16px;
        align-items: start;
        /* Trailing filler row keeps the left column packed at the top while
           the card spans the full height on the right. */
        grid-template-areas:
          'heading card'
          'body    card'
          'button  card'
          '.       card';
        grid-template-rows: auto auto auto 1fr;
      }

      .survey-stats__heading {
        font-size: clamp(1.75rem, 2.6vw, 2.25rem);
      }

      .survey-stats__card {
        align-self: center;
      }

      .survey-stats__cta {
        width: auto;
        max-width: max-content;
      }
    }
  }

  @media (min-width: 1200px) {
    .survey-stats {
      --page-margin: 7.5rem;
    }
  }
/* END_SECTION:survey-stats */

/* START_SECTION:test-ablauf (INDEX:86) */
.shopify-section:has(> .test-ablauf) > .test-ablauf {
    grid-column: 1 / -1;
  }

  .test-ablauf {
    padding-top: var(--test-ablauf-padding-top, 32px);
    padding-bottom: var(--test-ablauf-padding-bottom, 32px);
    padding-inline: var(--test-ablauf-padding-inline, 16px);
    color: var(--color-purple);

    .test-ablauf__inner {
      width: 100%;
      max-width: var(--page-width, 100%);
      margin-inline: auto;
    }

    .test-ablauf__panel {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 0.5rem 0.5rem;
      background: var(--card-bg, #fff);
      border-radius: 4px;
    }

    .test-ablauf__heading {
      margin: 0;
      font-weight: 600;
      font-family: var(--font-body--family, inherit);
      font-size: 1rem !important;
      line-height: 1.2;
      color: var(--color-purple);
    }

    .test-ablauf__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      width: 100%;
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .test-ablauf__toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      color: #95b3eb;

      svg {
        width: 20px;
        height: 20px;
        transition: transform 0.2s ease;
      }
    }

    .test-ablauf__panel[data-expanded='true'] .test-ablauf__toggle svg {
      transform: rotate(45deg);
    }

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

    .test-ablauf__steps {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .test-ablauf__step {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 0.5rem;
    }

    .test-ablauf__step-text {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      min-width: 0;
    }

    .test-ablauf__step-label {
      margin: 0;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.3;
      color: #ffa41c;
    }

    .test-ablauf__step-desc {
      margin: 0;
      font-size: 1rem;
      line-height: 140%;
      font-weight: 500;
      color: var(--color-purple);
    }

    .test-ablauf__step-media {
      width: 110px;
      flex-shrink: 0;
    }

    .test-ablauf__step-image {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 6px;
    }

    .test-ablauf__notice {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 0.625rem 0.75rem;
      background-color: #e7f0fc;
      border-radius: 6px;
      font-size: 0.875rem;
      line-height: 140%;
      font-weight: 500;
      color: var(--color-purple);
    }

    .test-ablauf__notice-icon {
      display: inline-flex;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: var(--color-purple);
    }

    .test-ablauf__notice-text {
      :is(p, :first-child) {
        margin: 0;
      }

      :is(p) + :is(p) {
        margin-top: 0.25rem;
      }
    }

    .test-ablauf__video {
      display: flex;
      justify-content: flex-start;
    }

    .test-ablauf__video-trigger {
      align-self: flex-start;
      margin: 0;
      padding: 0.5rem 0;
      background: none;
      border: none;
      color: var(--color-purple);
      font-size: 0.9375rem;
      font-weight: 400;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 1px;
      cursor: pointer;
    }

    .test-ablauf__modal {
      width: min(960px, 92vw);
      max-width: 92vw;
      max-height: 90dvh;
      padding: 0;
      border: none;
      background: transparent;
      overflow: visible;
      margin-top: auto !important;
      align-items: center;
      justify-content: center;
    }

    .test-ablauf__modal[open] {
      display: flex;
    }

    .test-ablauf__modal-inner {
      display: block;
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #000;
      border-radius: 8px;
      overflow: hidden;
    }

    .test-ablauf__modal-frame {
      width: 100%;
      height: 100%;

      iframe {
        width: 100%;
        height: 100%;
        border: 0;
      }
    }

    .test-ablauf__modal-close {
      position: absolute;
      top: -2.75rem;
      right: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      padding: 0;
      background: rgb(0 0 0 / 0.5);
      border: none;
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
    }

    .test-ablauf__modal::backdrop {
      background: rgb(0 0 0 / 0.6);
    }
  }

  @media (max-width: 749.98px) {
    .test-ablauf__panel[data-expanded='false'] .test-ablauf__body {
      display: none;
    }
  }

  @media (min-width: 750px) {
    .test-ablauf {
      padding-top: clamp(2rem, 4vw, 3.5rem);
      padding-bottom: clamp(2rem, 4vw, 3.5rem);
      background: #e3efff;

      .test-ablauf__inner {
        max-width: 1208px;
      }

      .test-ablauf__panel {
        padding: 0;
        background: transparent;
        border-radius: 0;
      }

      .test-ablauf__header {
        justify-content: center;
        padding: 0 0 1.5rem;
        cursor: default;
      }

      .test-ablauf__heading {
        font-family: var(--font-heading--family, inherit);
        font-weight: 700;
        font-size: 40px !important;
        line-height: 1.15;
        letter-spacing: -0.01em;
        text-align: center;
      }

      .test-ablauf__toggle {
        display: none;
      }

      .test-ablauf__body {
        gap: 1.25rem;
        align-items: center;
      }

      .test-ablauf__steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
          'step1 step2 step3'
          'notice notice notice';
        column-gap: 1.25rem;
        row-gap: 1rem;
        width: 100%;
      }

      .test-ablauf__step {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        background: var(--card-bg, #fff);
        border-radius: 8px;
      }

      .test-ablauf__step--1 {
        grid-area: step1;
      }

      .test-ablauf__step--2 {
        grid-area: step2;
      }

      .test-ablauf__step--3 {
        grid-area: step3;
      }

      .test-ablauf__step-media {
        order: -1;
        width: 100%;
      }

      .test-ablauf__step-image {
        aspect-ratio: 16 / 10;
      }

      .test-ablauf__notice {
        grid-area: notice;
        justify-self: center;
        align-items: center;
        max-width: max-content;
        padding: 0.75rem 1.25rem;
        background: var(--card-bg, #fff);
      }

      .test-ablauf__video {
        justify-content: center;
      }
    }
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
/* END_SECTION:test-ablauf */

/* START_SECTION:test-ergebnisse (INDEX:87) */
.shopify-section:has(> .test-ergebnisse) > .test-ergebnisse {
    grid-column: 1 / -1;
  }

  .test-ergebnisse {
    padding-top: var(--test-ergebnisse-padding-top, 32px);
    padding-bottom: var(--test-ergebnisse-padding-bottom, 32px);
    padding-inline: var(--test-ergebnisse-padding-inline, 16px);
    color: var(--color-purple);

    .test-ergebnisse__inner {
      width: 100%;
      margin-inline: auto;
    }

    .test-ergebnisse__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.25rem;
    }

    .test-ergebnisse__card {
      background: var(--card-bg);
      border-radius: 4px;
      overflow: hidden;

      > summary {
        list-style: none;
        cursor: pointer;

        &::-webkit-details-marker {
          display: none;
        }
      }

      .test-ergebnisse__toggle-plus {
        display: inline-flex;
      }

      .test-ergebnisse__toggle-minus {
        display: none;
      }

      &[open] {
        .test-ergebnisse__toggle-plus {
          display: none;
        }

        .test-ergebnisse__toggle-minus {
          display: inline-flex;
        }
      }
    }

    .test-ergebnisse__summary {
      padding: 0.5rem 0.5rem;
    }

    .test-ergebnisse__summary-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      width: 100%;
    }

    .test-ergebnisse__heading {
      margin: 0;
      font-weight: 600;
      font-family: var(--font-body--family);
      font-size: 1rem !important;
      line-height: 1.4;
      color: var(--color-purple);
    }

    .test-ergebnisse__toggle {
      display: inline-flex;
      width: 20px;
      height: 20px;
      color: #95b3eb;
    }

    .test-ergebnisse__body {
      display: grid;
      gap: 0.875rem;
      padding: 0 0.5rem 1rem;
    }

    .test-ergebnisse__card--report .test-ergebnisse__body {
      grid-template-columns: 1fr;
      grid-template-areas:
        'intro'
        'list'
        'media';
    }

    .test-ergebnisse__card--consultation .test-ergebnisse__body {
      grid-template-columns: auto 1fr;
      grid-template-areas:
        'intro intro'
        'list list'
        'profile contact';
      align-items: start;
    }

    .test-ergebnisse__intro {
      grid-area: intro;
      font-size: 1rem;
      line-height: 1.4;
      font-weight: 500;

      :is(p, :first-child) {
        margin: 0;
      }

      p + p {
        margin-top: 0.75em;
      }
    }

    .test-ergebnisse__more-link {
      color: var(--color-purple);
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 1px;

      &:hover {
        text-decoration-thickness: 2px;
      }
    }

    .test-ergebnisse__list {
      grid-area: list;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .test-ergebnisse__list-item {
      display: grid;
      grid-template-columns: 24px 1fr;
      align-items: start;
      gap: 0.5rem;
      font-size: 1rem;
      line-height: 1.4;
      font-weight: 500;
    }

    .test-ergebnisse__list-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;

      svg {
        width: 20px;
        height: 20px;

        * {
          fill: var(--color-purple);
        }
      }
    }

    .test-ergebnisse__list-text {
      :is(p) {
        margin: 0;
      }
    }

    .test-ergebnisse__media {
      grid-area: media;
      display: flex;
      justify-content: center;
      padding: 0.5rem 0;
    }

    .test-ergebnisse__image {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .test-ergebnisse__profile {
      grid-area: profile;
      display: flex;
      align-self: center;
      justify-content: center;
    }

    .test-ergebnisse__profile-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
    }

    .test-ergebnisse__contact {
      grid-area: contact;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .test-ergebnisse__contact-heading {
      margin: 0 0 0.125rem;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.3;
      font-family: var(--font-body--family);
      color: var(--color-purple);
    }

    .test-ergebnisse__contact-list {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .test-ergebnisse__contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-purple);
      font-size: 0.9375rem;
      line-height: 140%;

      &:hover {
        text-decoration-thickness: 2px;
      }
    }

    .test-ergebnisse__contact-icon {
      display: inline-flex;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
    }
  }

  @media (min-width: 750px) {
    .test-ergebnisse {
      --test-ergebnisse-padding-inline: 0 !important;
      .test-ergebnisse__grid {
        gap: 0rem;
      }

      /* Card becomes the grid; body collapses via display: contents so its
         children participate directly in the card grid. */
      .test-ergebnisse__card {
        display: grid;
        column-gap: clamp(2rem, 4vw, 4rem);
        row-gap: 0.75rem;
        align-items: start;
        padding: clamp(2rem, 4vw, 3rem);
        border-radius: 12px;
      }

      .test-ergebnisse__report-wrapper {
        background: #e3efff;
      }

      .test-ergebnisse__card--report {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          'summary media'
          'intro   media'
          'list    media';
        background: transparent;
        max-width: 1208px;
        margin: 0 auto;
        padding-inline: 0 !important;

        @media (max-width: 1207px) {
          padding-inline: 1rem !important;
        }
      }

      .test-ergebnisse__card--consultation {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1208px;
        margin: 0 auto;
        padding-inline: 0;
        grid-template-areas:
          'profile summary'
          'profile intro'
          'profile list'
          'profile contact';
        background: transparent;
      }

      /* Modern Chrome wraps non-summary <details> content in ::details-content,
         which would otherwise stay a single grid item. Flatten both wrappers
         so intro/list/media/profile/contact participate in the card grid. */
      .test-ergebnisse__card::details-content {
        display: contents;
      }

      .test-ergebnisse__body {
        display: contents;
      }

      .test-ergebnisse__summary {
        grid-area: summary;
        cursor: default;
        pointer-events: none;
        padding: 0;
      }

      .test-ergebnisse__card {
        padding: 5rem 1rem;
      }

      .test-ergebnisse__toggle {
        display: none;
      }

      .test-ergebnisse__heading {
        font-family: var(--font-heading--family);
        font-weight: 700;
        font-size: 40px !important;
        line-height: 1.15;
        letter-spacing: -0.01em;
      }

      .test-ergebnisse__intro {
        font-size: 1.0625rem;
        line-height: 1.55;
      }

      .test-ergebnisse__list {
        gap: 0.75rem;
        padding: 0.75rem;
        background: var(--color-white, #fff);
        border-radius: 12px;
      }

      /* Take media/profile out of grid track-sizing flow so the spanning column
         doesn't stretch left rows to image height. Image floats inside an
         absolute-positioned wrapper that fills its grid cell. */
      .test-ergebnisse__media,
      .test-ergebnisse__profile {
        position: relative;
        align-self: stretch;
        justify-self: stretch;
        min-height: 0;
        padding: 0;
      }

      .test-ergebnisse__image,
      .test-ergebnisse__profile-image {
        position: absolute;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        min-height: 470px;
      }

      .test-ergebnisse__profile-image {
        width: auto;

        min-height: 400px;
        max-height: 100%;
        background: #fff;
        aspect-ratio: 1 / 1;
        object-fit: cover;
      }

      .test-ergebnisse__contact-heading {
        font-size: 1.0625rem;
      }

      .test-ergebnisse__contact-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;

        .test-ergebnisse__contact-link {
          font-weight: 500;
          font-size: 1rem;
        }
      }
    }
  }
/* END_SECTION:test-ergebnisse */

/* START_SECTION:test-funktioniert (INDEX:88) */
.shopify-section:has(> .test-funktioniert) > .test-funktioniert {
    grid-column: 1 / -1;
  }

  .shopify-section:has(> .test-funktioniert) > .test-funktioniert:has(.test-funktioniert__image) {
    position: relative;

    .test-funktioniert__image {
      width: 100%;
      margin-bottom: -120px;
      pointer-events: none;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    .test-funktioniert__image-media {
      display: block;
      width: 100%;
      height: auto;
      mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    }
  }

  .test-funktioniert {
    padding-top: var(--test-funktioniert-padding-top, 32px);
    padding-bottom: var(--test-funktioniert-padding-bottom, 32px);
    padding-inline: var(--test-funktioniert-padding-inline, 16px);
    color: var(--color-purple);

    .test-funktioniert__inner {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
      max-width: var(--page-width, 100%);
      margin-inline: auto;
      position: relative;
      z-index: 1;
    }

    .test-funktioniert__heading {
      margin: 0;
      padding: 0.875rem 0.5rem 0.5rem;
      background: var(--card-bg);
      border-radius: 4px 4px 0 0;
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.2;
      color: var(--color-purple);
    }

    .test-funktioniert__panel {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      background: var(--card-bg);
      border-radius: 4px;
      padding: 0 0.5rem 0.5rem;
    }

    .test-funktioniert__panel-left {
      display: flex;
      flex-direction: column;
    }

    .test-funktioniert__panel-left-inner {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .test-funktioniert__panel-heading {
      margin: 0;
      font-family: inherit;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.3;
      color: var(--color-purple);
    }

    .test-funktioniert__panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      width: 100%;
      padding: 0.5rem 0 0.125rem;
      margin: 0;
      background: none;
      border: none;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .test-funktioniert__panel-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: #95b3eb;

      svg {
        width: 20px;
        height: 20px;
        transition: transform 0.2s ease;
      }
    }

    .test-funktioniert__panel[data-expanded='true'] .test-funktioniert__panel-toggle svg {
      transform: rotate(45deg);
    }

    .test-funktioniert__panel-left-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .test-funktioniert__panel-right {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .test-funktioniert__intro {
      font-size: 1rem;
      line-height: 140%;

      :is(p, :first-child) {
        margin: 0;
      }

      sup {
        font-size: 0.75em;
      }
    }

    .test-funktioniert__search {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
    }

    .test-funktioniert__search-icon {
      position: absolute;
      left: 0.75rem;
      display: inline-flex;
      width: 20px;
      height: 20px;
      color: var(--color-purple-light);
      pointer-events: none;
    }

    .test-funktioniert__search-input {
      width: 100%;
      height: 36px;
      padding: 0.625rem 1rem 0.625rem 2.5rem;
      border: 1px solid var(--color-background);
      border-radius: 4px;
      background: var(--card-bg, #fff);
      font-size: 1rem;
      color: var(--color-purple);

      &::placeholder {
        color: var(--color-purple-light);
      }

      &:focus {
        outline: 2px solid var(--color-background, var(--color-purple));
        outline-offset: 0;
      }

      &::-webkit-search-cancel-button {
        appearance: none;
      }
    }

    .test-funktioniert__categories {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .test-funktioniert__category {
      background: var(--color-background, #fff);
      border-radius: 8px;
      overflow: hidden;

      &.test-funktioniert__category--match {
        .test-funktioniert__cat-icon-plus {
          display: none;
        }

        .test-funktioniert__cat-icon-check {
          display: inline-flex;
        }
      }
    }

    .test-funktioniert__cat-details {
      > summary {
        list-style: none;
        cursor: pointer;

        &::-webkit-details-marker {
          display: none;
        }
      }

      &[open] > summary .test-funktioniert__cat-icon-plus {
        transform: rotate(45deg);
      }
    }

    .test-funktioniert__cat-summary {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem;
    }

    .test-funktioniert__cat-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 8px;
    }

    .test-funktioniert__cat-text {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
      min-width: 0;
    }

    .test-funktioniert__cat-title {
      font-weight: 600;
      font-size: 1rem;
      line-height: 140%;
      color: var(--color-purple);
    }

    .test-funktioniert__cat-teaser {
      font-size: 0.875rem;
      line-height: 140%;
      font-weight: 500;
      color: var(--color-purple-light);
    }

    .test-funktioniert__cat-state {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      color: #95b3eb;

      svg {
        width: 20px;
        height: 20px;
      }
    }

    .test-funktioniert__cat-icon-plus {
      display: inline-flex;
      transition: transform 0.2s ease;
    }

    .test-funktioniert__cat-icon-check {
      display: none;
      color: var(--color-success, #51b92c);
    }

    .test-funktioniert__cat-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 0 0.75rem 0.75rem;
    }

    .test-funktioniert__cat-intro {
      font-size: 0.9375rem;
      line-height: 1.5;

      :is(p, :first-child) {
        margin: 0;
      }
    }

    .test-funktioniert__cat-chargable {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0.5rem;
      padding: 0.5rem;
      background-color: #f3f8fe99;
      border-radius: 0.25rem;
      font-size: 0.875rem;
      font-weight: 500;

      svg {
        width: 20px;
        height: 20px;
      }
    }

    .test-funktioniert__subitems {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin: 0.5rem 0 0;
      padding: 0;
      list-style: none;
    }

    .test-funktioniert__subitem {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      border-bottom: 1px solid #a7c2eb;
      padding-bottom: 0.75rem;

      &:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      &[hidden] {
        display: none;
      }
    }

    .test-funktioniert__sub-title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0;
      padding: 0.25rem 0;
      font-family: var(--font-body--family);
      font-weight: 700;
      font-size: 0.875rem;
      line-height: 120%;
      color: var(--color-purple);
    }

    .test-funktioniert__sub-icon {
      width: 35px;
      height: 35px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .test-funktioniert__sub-intro {
      margin: 0;
      font-weight: 600;
      font-size: 0.875rem;
      line-height: 140%;
      color: var(--color-purple);
    }

    .test-funktioniert__items-wrap {
      &.test-funktioniert__items-wrap--expanded .test-funktioniert__items {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
      }
    }

    .test-funktioniert__items {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 0.875rem;
      line-height: 140%;
      color: var(--color-purple);

      :is(p, :first-child) {
        margin: 0;
      }
    }

    .test-funktioniert__more-toggle,
    .test-funktioniert__expand-all {
      align-self: flex-start;
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      color: var(--color-purple);
      font-size: 0.9375rem;
      font-weight: 400;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 1px;
      cursor: pointer;
    }

    .test-funktioniert__expand-all {
      padding: 0.5rem 0;
    }

    mark {
      padding: 0 0.1em;
      border-radius: 2px;
      background: #e3ff5e;
      color: var(--color-purple);
    }

    .metafield-rich_text_field {
      display: contents;
      font-weight: 500;
    }
  }

  @media (max-width: 749.98px) {
    .test-funktioniert__panel[data-expanded='false'] {
      .test-funktioniert__panel-left-body,
      .test-funktioniert__panel-right {
        display: none;
      }
    }
  }

  @media (min-width: 420px) {
    .test-funktioniert {
      padding-top: 0 !important;

      .test-funktioniert__image {
        display: none;
      }
    }
  }

  @media (min-width: 750px) {
    .test-funktioniert {
      padding: 0 1rem 5rem !important;
      .test-funktioniert__inner {
        max-width: 1208px;

        & .test-funktioniert__category {
          background-color: #f3f8fe;
        }
      }
      .test-funktioniert__heading {
        display: none;
      }

      .test-funktioniert__panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 4rem;
        align-items: center;
        padding: 0;
        background: transparent;
        border-radius: 0;
      }

      .test-funktioniert__panel-left {
        align-self: stretch;
        padding-top: clamp(2rem, 9vh, 9rem);
      }

      .test-funktioniert__panel-left-inner {
        gap: 0.5rem;
      }

      .test-funktioniert__panel:has(.test-funktioniert__cat-details[open]) .test-funktioniert__panel-left-inner {
        position: sticky;
        top: calc(var(--header-height, 0px) + 20rem);
        padding-bottom: 20rem;
      }

      .test-funktioniert__panel-right {
        gap: 0.75rem;
        align-self: start;
      }

      .test-funktioniert__panel-header {
        padding: 0;
        cursor: default;
      }

      .test-funktioniert__panel-heading {
        font-family: var(--font-heading--family, inherit);
        font-weight: 700;
        font-size: clamp(1.75rem, 2.4vw, 2.25rem);
        line-height: 1.15;
        letter-spacing: -0.01em;
      }

      .test-funktioniert__panel-toggle {
        display: none;
      }

      .test-funktioniert__intro {
        font-size: 1rem;
        line-height: 140%;
        font-weight: 500;
      }
    }
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
/* END_SECTION:test-funktioniert */

/* START_SECTION:test-products (INDEX:89) */
.shopify-section:has(> .test-products) > .test-products {
    grid-column: 1 / -1;
  }

  .test-products {
    --page-margin: 0.25rem;

    padding-block: var(--test-products-padding-top-mobile, 40px) var(--test-products-padding-bottom-mobile, 40px);
    background: var(--test-products-bg, #d9e6fb);
    color: var(--color-purple);

    .test-products__inner {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
    }

    .test-products__header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      text-align: left;
    }

    .test-products__heading {
      margin: 0;
      font-weight: 700;
      line-height: 120%;
      text-wrap: balance;
    }

    .test-products__subheading {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;
    }

    .test-products__badges {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .test-products__badges > li {
      display: inline-flex;
      align-items: center;
    }

    .test-products__usp {
      gap: 0.25rem;
      font-weight: 500;
      line-height: 140%;
    }

    .test-products__usp-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      aspect-ratio: 1 / 1;

      svg {
        display: block;
        width: 100%;
        height: 100%;
      }
    }

    .test-products__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0;
      border: none;
      background: none;
      color: var(--color-foreground);
      font: inherit;
      font-weight: 500;
      line-height: 140%;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;

      &:hover {
        text-decoration-thickness: 2px;
      }
    }

    .test-products__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1rem;
      align-items: center;
    }

    .test-products__pet-link {
      display: inline-flex;
      align-items: center;
      align-self: center;
      gap: 0.25rem;
      color: var(--color-purple);
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 140%;
      text-decoration: underline;
      text-underline-offset: 3px;

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

    .test-products__pet-icon {
      display: inline-flex;
      flex-shrink: 0;
    }

    .test-products__empty {
      margin: 0;
      padding: 2rem;
      text-align: center;
    }
  }

  @media (min-width: 750px) {
    .test-products {
      padding-block: var(--test-products-padding-top-desktop, 64px) var(--test-products-padding-bottom-desktop, 64px);

      .test-products__inner {
        gap: 32px;
      }

      .test-products__header {
        align-items: center;
        text-align: center;
      }

      .test-products__badges {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
      }

      .test-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      /* Curated trio only: lift the featured card into the centre column,
         leaving the other two to auto-flow left and right. */
      .test-products__grid--triple .shop-card--featured {
        grid-column: 2;
        grid-row: 1;
      }
    }
  }
  @media (min-width: 1200px) {
    .test-products {
      --page-margin: 7.5rem;
    }
  }
/* END_SECTION:test-products */

/* START_SECTION:text-accordion (INDEX:90) */
.shopify-section:has(> .text-accordion) > .text-accordion {
    grid-column: 1 / -1;
  }

  .text-accordion {
    --page-margin: 0.25rem;

    padding-block: var(--ta-padding-top-mobile, 40px) var(--ta-padding-bottom-mobile, 40px);
    background: var(--ta-bg, #d9e6fb);
    color: var(--color-purple);

    .text-accordion__inner {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
    }

    .text-accordion__text {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .text-accordion__heading {
      margin: 0;
      font-size: clamp(1.5rem, 6vw, 2.25rem);
      line-height: 1.15;
      text-wrap: balance;
    }

    .text-accordion__subheading {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5;
    }

    .text-accordion__items {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .text-accordion__item {
      display: block;
      border-radius: 0.25rem;
      background: #fff;
    }

    .text-accordion__summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.5rem;
      list-style: none;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      line-height: 140%;

      &::-webkit-details-marker {
        display: none;
      }
    }

    .text-accordion__icon {
      display: inline-flex;
      flex-shrink: 0;
      color: #95b3eb;
    }

    /* The global `accordion-custom details[open] > summary svg` rule rotates this
       to an ×; this just makes the rotation animate. */
    .text-accordion__icon svg {
      transition: transform var(--animation-speed, 0.2s) var(--animation-easing, ease);
    }

    .text-accordion__content {
      padding: 0 0.5rem 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;

      :is(p, :first-child) {
        margin-top: 0;
      }

      :is(p, :last-child) {
        margin-bottom: 0;
      }
    }
  }

  @media (min-width: 750px) {
    .text-accordion {
      padding-block: var(--ta-padding-top-desktop, 64px) var(--ta-padding-bottom-desktop, 64px);

      .text-accordion__inner {
        flex-direction: row;
        align-items: center;
        gap: clamp(2rem, 5vw, 5rem);
      }

      .text-accordion__text {
        flex: 1;
      }

      .text-accordion__items {
        flex: 1.1;
      }
    }
  }

  @media (min-width: 1200px) {
    .text-accordion {
      --page-margin: 7.25rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .text-accordion__icon svg {
      transition: none;
    }
  }
/* END_SECTION:text-accordion */

/* START_SECTION:trust-test (INDEX:92) */
@media screen and (min-width: 1225px) {
    .trust-test-section {
      padding: 64px 0px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .trust-test-section {
      padding: 32px 0px;
    }
  }

  @media screen and (max-width: 749px) {
    .trust-test-section {
      padding: 32px 0px;
    }
  }

  .trust-test-section {
    text-align: center;
  }

  .trust-test-section__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #43334b;
    margin-bottom: 2rem;
    line-height: 1.2;
  }

  .trust-test-section__heading strong {
    background: linear-gradient(49.28deg, #ff8c21, #f5576e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
  }

  .trust-test-section__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .trust-test-section__avatars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
  }

  .trust-test-section__image-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .trust-test-section__circular-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid #ff7a00; /* orange border */
    padding: 3px;
  }

  /* Horizontal scroller for overflow cases */
  .trust-test-section__scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .trust-test-section__scroller > * {
    scroll-snap-align: start;
  }
  .trust-test-section__scroller::-webkit-scrollbar {
    display: none;
  }

  /* CTA bar */
  .trust-test-section__cta-bar {
    margin-top: 2rem;
    background: #f3f8fe;
    border-radius: 999px;
    padding: 5px 16px;
    display: inline-flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    max-width: 1440px;
  }

  .trust-test-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #755c81;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background-color 0.2s ease;
    text-decoration-thickness: 2px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
  }
  .trust-test-section__cta:hover {
    background: #f7f3fa;
  }
  .trust-test-section__cta-icon {
    display: inline-flex;
  }

  /* Video Popup Styles */
  .trust-test-section__video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .trust-test-section__video-popup.active {
    display: flex;
    opacity: 1;
  }

  .trust-test-section__video-popup-inner {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    max-width: 90%;
    max-height: 90vh;
    width: 100%;
    max-width: 1000px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  .trust-test-section__close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .trust-test-section__close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .trust-test-section__close-popup svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
  }

  .trust-test-section__video-wrapper-popup {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .trust-test-section__video-wrapper-popup video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
  }

  @media screen and (max-width: 749px) {
    .trust-test-section__heading {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      text-align: left;
      padding-inline: 20px;
    }

    .trust-test-section__content {
      gap: 2rem;
    }

    .trust-test-section__avatars {
      gap: 20px;
    }

    .trust-test-section__video-popup-inner {
      max-width: 95%;
      max-height: 85vh;
    }

    .trust-test-section__close-popup {
      top: 10px;
      right: 10px;
      width: 35px;
      height: 35px;
    }

    .trust-test-section__cta-bar {
      width: calc(100% - 40px);
      display: grid;
      border-radius: 16px;
      gap: 0;
      justify-items: start;
      padding: 5px 3px;
      margin-top: 0;
    }

    .trust-test-section__cta {
      gap: 8px;
      padding: 3px 12px;
    }

    .trust-test-section__guarantee-title {
      font-size: 1.25rem;
    }

    .trust-test-section__guarantee-icon {
      width: 28px;
      height: 28px;
    }

    .trust-test-section__guarantee-close {
      top: 12px;
      right: 12px;
      width: 28px;
      height: 28px;
    }
  }
/* END_SECTION:trust-test */

/* START_SECTION:unsere-tests (INDEX:93) */
.unsere-tests {
  text-align: center;
  padding: 80px 0;
}

.unsere-tests__heading {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.unsere-tests__subheading {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #666;
}

.unsere-tests__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.unsere-tests__card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 24px;
  transition: transform 0.3s ease;
}

.unsere-tests__card:hover {
  transform: translateY(-5px);
}

.unsere-tests__discount {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e63946;
  color: #fff;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.875rem;
}

.unsere-tests__bestseller {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffba08;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.unsere-tests__image {
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.unsere-tests__label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
}

.unsere-tests__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.unsere-tests__desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

.unsere-tests__price {
  font-weight: 700;
  font-size: 1.2rem;
}

.unsere-tests__compare {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 6px;
}

.unsere-tests__cta {
  margin-top: 48px;
}

.unsere-tests__cta a {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.unsere-tests__cta a:hover {
  background: #004c99;
}
/* END_SECTION:unsere-tests */

/* START_SECTION:video-testimonials (INDEX:96) */
.shopify-section:has(> .video-testimonials) > .video-testimonials {
    grid-column: 1 / -1;
  }

  .video-testimonials {
    --page-margin: 0.25rem;

    padding-block: var(--vt-pt-mobile, 40px) var(--vt-pb-mobile, 40px);
    background: var(--vt-bg, var(--color-background-light));
    color: var(--color-purple);

    .video-testimonials__inner {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: var(--page-width);
      margin-inline: auto;
      padding-inline: var(--page-margin);
    }

    .video-testimonials__header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      text-align: left;
    }

    .video-testimonials__heading {
      margin: 0;
      font-size: clamp(1.75rem, 7vw, 2.75rem);
      line-height: 1.1;
      text-wrap: balance;
    }

    .video-testimonials__rating {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.375rem 0.5rem;
      font-size: 1rem;
      font-weight: 500;
    }

    .video-testimonials__stars {
      display: inline-flex;
      align-items: center;
    }

    .video-testimonials__rating .video-testimonials__stars svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .video-testimonials__rating-link,
    .video-testimonials__rating-count {
      color: inherit;
    }

    .video-testimonials__rating-link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .video-testimonials__carousel {
      display: block;
    }

    .video-testimonials__track {
      display: flex;
      gap: 1rem;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .video-testimonials__track::-webkit-scrollbar {
      display: none;
    }

    .video-testimonials__slide {
      flex: 0 0 88%;
      scroll-snap-align: center;
    }

    .video-testimonials__card {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.75rem;
      height: 100%;
      padding: 0.75rem;
      border-radius: 0.5rem;
      background: var(--vt-card, #fff);
    }

    .video-testimonials__media {
      position: relative;
      margin: 0;
      aspect-ratio: 4 / 3;
      border-radius: 0.375rem;
      overflow: hidden;
      background: #000;
    }

    .video-testimonials__media-dialog,
    .video-testimonials__play {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
    }

    .video-testimonials__play {
      padding: 0;
      border: none;
      background: none;
      cursor: pointer;
    }

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

    .video-testimonials__play-icon {
      position: absolute;
      inset: 0;
      width: 3.5rem;
      height: 3.5rem;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 0.25rem;
      border-radius: 50%;
      background: rgb(255 255 255 / 0.92);
      color: var(--color-purple);
      box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 0.25);
      transition: transform var(--animation-speed, 0.2s) var(--animation-easing, ease);
    }

    .video-testimonials__play:hover .video-testimonials__play-icon {
      transform: scale(1.06);
    }

    .video-testimonials__body {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      --vt-clamp: 4;
    }

    .video-testimonials__meta {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.25rem;
    }

    .video-testimonials__avatar {
      display: none;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      object-fit: cover;
    }

    .video-testimonials__meta-main {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .video-testimonials__meta-rating,
    .video-testimonials__meta-person {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.375rem;
      margin: 0;
    }

    .video-testimonials__meta-rating .video-testimonials__stars svg {
      width: 1rem;
      height: 1rem;
    }

    .video-testimonials__date {
      font-size: 0.875rem;
      opacity: 0.7;
    }

    .video-testimonials__flag {
      font-size: 1.125rem;
      line-height: 1;
    }

    .video-testimonials__name {
      font-weight: 600;
    }

    .video-testimonials__verified {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.875rem;
    }

    .video-testimonials__verified-icon {
      flex-shrink: 0;
    }

    .video-testimonials__quote {
      display: -webkit-box;
      -webkit-line-clamp: var(--vt-clamp, 4);
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;

      p {
        margin: 0;
      }

      p + p {
        margin-top: 0.5em;
      }
    }

    .video-testimonials__more-dialog {
      display: block;
    }

    .video-testimonials__more {
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      color: inherit;
      font: inherit;
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
    }

    .video-testimonials__dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .video-testimonials__dot {
      width: 0.625rem;
      height: 0.625rem;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgb(46 25 64 / 0.25);
      cursor: pointer;
      transition: background var(--animation-speed, 0.2s) var(--animation-easing, ease);
    }

    .video-testimonials__dot[aria-current='true'] {
      background: var(--color-purple);
    }

    .video-testimonials__all {
      align-self: center;
      color: var(--color-purple);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* Disable the theme's elementSlideInTop: its `margin-top: 0` (held by
       `forwards`) overrides the UA's centring `margin: auto` and pins the box to
       the top. With it gone the dialog centres and the theme's native
       click-outside-to-close (which measures against the box) works. */
    .video-testimonials__modal[open],
    .video-testimonials__text-modal[open] {
      animation: none;
    }

    .video-testimonials__modal,
    .video-testimonials__text-modal {
      height: fit-content;
      max-width: 92vw;
      margin: auto;
      padding: 0;
      border: none;
    }

    .video-testimonials__modal {
      width: fit-content;
      max-height: 90dvh;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }

    .video-testimonials__modal-inner {
      position: relative;
      display: inline-flex;
    }

    .video-testimonials__modal-video {
      display: block;
      width: auto;
      height: auto;
      max-width: 92vw;
      max-height: 85dvh;
      border-radius: 0.5rem;
      background: #000;
    }

    .video-testimonials__text-modal {
      width: min(40rem, 92vw);
      max-height: 85dvh;
      border-radius: 0.25rem;
      background: var(--vt-card, #fff);
      color: var(--color-purple);
      box-shadow: var(--shadow-popover);
      overflow: hidden;
    }

    .video-testimonials__text-modal[open] {
      display: flex;
      flex-direction: column;
    }

    .video-testimonials__text-modal-inner {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-height: 0;
      padding: 1rem;
      overflow-y: auto;
    }

    .video-testimonials__text-modal-body {
      font-size: 1rem;
      line-height: 1.6;
      font-weight: 500;
      p {
        margin: 0;
      }

      p + p {
        margin-top: 0.75em;
      }
    }

    .video-testimonials__modal-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgb(0 0 0 / 0.55);
      color: #fff;
      cursor: pointer;
    }

    .video-testimonials__modal::backdrop,
    .video-testimonials__text-modal::backdrop {
      background: rgb(0 0 0 / 0.6);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .video-testimonials__play:hover .video-testimonials__play-icon {
      transform: none;
    }
  }

  @media (min-width: 750px) {
    .video-testimonials {
      padding-block: var(--vt-pt-desktop, 64px) var(--vt-pb-desktop, 64px);

      .video-testimonials__inner {
        gap: 2rem;
      }

      .video-testimonials__header {
        align-items: center;
        text-align: center;
      }

      .video-testimonials__slide {
        flex: 0 0 100%;
        scroll-snap-align: center;
      }

      .video-testimonials__card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        align-items: stretch;
        gap: 4rem;
        padding: 0;
        border-radius: 0;
        background: none;
      }

      .video-testimonials__media {
        aspect-ratio: auto;
        min-height: 16rem;
        border-radius: 0.25rem;
      }

      .video-testimonials__body {
        gap: 0.75rem;
        padding: 0.5rem;
        border-radius: 0.25rem;
        background: var(--vt-card, #fff);
        --vt-clamp: 6;
      }

      .video-testimonials__body > .video-testimonials__quote {
        order: 1;
      }

      .video-testimonials__body > .video-testimonials__more-dialog {
        order: 2;
      }

      .video-testimonials__body > .video-testimonials__meta {
        order: 3;
        margin-top: auto;
        padding-top: 1rem;
      }

      .video-testimonials__meta {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 0.75rem;
      }

      .video-testimonials__avatar {
        display: block;
      }

      .video-testimonials__dots {
        justify-content: flex-end;
      }
    }
  }

  @media (min-width: 1200px) {
    .video-testimonials {
      --page-margin: 7.25rem;
    }
  }
/* END_SECTION:video-testimonials */

/* CSS from block stylesheet tags */
/* START_BLOCK:_announcement (INDEX:98) */
.text-block {
    width: var(--width);
    max-width: 100%;
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    /*text-wrap: balance;
    text-wrap: pretty;*/
  }

  .text-block:not(.text-block--full-width).h1,
  .text-block:not(.text-block--full-width).h2,
  .text-block:not(.text-block--full-width).h3,
  .text-block:not(.text-block--full-width).h4,
  .text-block:not(.text-block--full-width).h5,
  .text-block:not(.text-block--full-width).h6 {
    /*text-wrap: balance;*/
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }
/* END_BLOCK:_announcement */

/* START_BLOCK:_blog-post-card (INDEX:99) */
.blog-post-card {
    display: flex;
    flex-direction: column;
    text-align: var(--text-align);
  }

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

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

  .blog-post-item:first-child .blog-post-card {
    flex-direction: row;

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

  .blog-post-item:first-child .blog-post-card__image-container {
    width: 70%;

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .blog-post-item:first-child:has(.blog-post-card__image-container) .blog-post-card__content {
    padding-inline-start: var(--columns-gap);
    width: 30%;

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

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

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

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

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

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

/* START_BLOCK:_blog-post-description (INDEX:101) */
.blog-post-card__content-text a {
    color: var(--color-primary);
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_BLOCK:_blog-post-description */

/* START_BLOCK:_blog-post-featured-image (INDEX:102) */
.blog-post-featured-image {
    --width: 100%;
    --custom-width: 100%;

    display: block;
    position: relative;
    width: var(--width);
  }

  .blog-post-featured-image.size-style {
    --width: var(--size-style-width, 100%);
  }

  .blog-post-featured-image--height-fit {
    height: fit-content;
  }

  .blog-post-featured-image--height-fill {
    height: 100%;
  }

  .blog-post-featured-image__image {
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  @media screen and (max-width: 749px) {
    .blog-post-featured-image {
      --width: var(--width-mobile, var(--width));
      --custom-width: var(--custom-width-mobile, var(--custom-width));
    }

    .blog-post-featured-image.size-style {
      --width: var(--size-style-width-mobile, var(--size-style-width, 100%));
    }
  }
/* END_BLOCK:_blog-post-featured-image */

/* START_BLOCK:_blog-post-image (INDEX:103) */
.blog-post-card__image {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: calc(var(--blog-post-card-img-height) * var(--blog-post-card-scale));
  }

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

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

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

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

  .blog-post-details > span {
    text-overflow: clip;
    overflow: hidden;
  }
  .article-tags {
    padding-top: var(--padding-block-start);
    padding-bottom: var(--padding-block-end);
  }
/* END_BLOCK:_blog-post-info-text */

/* START_BLOCK:_cart-products (INDEX:106) */
.cart-page--empty .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block-start: 0;
    text-align: center;
  }

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

/* START_BLOCK:_cart-summary (INDEX:107) */
.cart__summary-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cart-drawer__summary .cart__summary-item.cart__installments {
    display: none;
    flex: none;
  }

  .cart__summary-item.tax-note {
    font-size: var(--cart-font-size--sm);
  }

  .cart__discount-label {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .cart__total {
    align-items: baseline;
    font-weight: var(--font-weight-bold);
  }

  .cart__tax-note {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart__discount-label svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    display: inline-block;
  }

  .cart__summary-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    container-type: inline-size;
    padding: 0;
    position: sticky;
    top: 0;
    align-self: start;

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

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

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

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

  .cart__summary-container:not(.cart__container--extend),
  .cart__summary-container:not(.cart__container--extend) .cart__summary-inner {
    height: auto;
  }

  .cart__container--extend {
    height: 100%;

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

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

  .cart__container--extend .cart__summary-inner {
    height: 100%;
    padding: var(--padding-md) 0 var(--padding-4xl);

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

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

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

/* START_BLOCK:_cart-title (INDEX:108) */
.cart-title h1 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .cart-title .cart-bubble {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-title .cart-bubble[data-maintain-ratio] {
    aspect-ratio: 1;
    min-width: 26px;
  }

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

  .cart-title .cart-bubble__text {
    color: var(--color-foreground);
    font-family: var(--font-paragraph--family);
    font-size: clamp(var(--cart-font-size--2xs), 0.7lh, var(--cart-font-size--xs));
  }

  @media screen and (min-width: 750px) {
    .cart-title-title {
      height: 29px;
      font-size: 24px;
    }
  }

  @media screen and (max-width: 1224px) {
    .cart-title-title {
      padding-top: 32px;
    }
  }

  @media screen and (max-width: 749px) {
    .cart-title-title {
      height: 24px;
      font-size: 20px;
    }
  }

  .cart-title-title {
    width: 100%;
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: #43334b;
    margin-right: auto;
  }
/* END_BLOCK:_cart-title */

/* START_BLOCK:_collection-image (INDEX:111) */
.collection-image {
    width: var(--image-width);
  }

  .collection-image .collection-image__featured-image {
    aspect-ratio: var(--ratio);
    object-fit: cover;
  }
/* END_BLOCK:_collection-image */

/* START_BLOCK:_collection-link (INDEX:113) */
.collection-links__link {
    --min-font-size: var(--font-size--4xl);
    --max-font-size: var(--font-size--6xl);

    display: flex;
    color: inherit;
    text-decoration: none;
    text-wrap: pretty;
    font-size: clamp(var(--min-font-size), 4.5vw, var(--max-font-size));

    @media (hover: hover) {
      opacity: var(--disabled-opacity);
    }

    [layout='spotlight'] & {
      opacity: var(--disabled-opacity);
    }

    &[aria-current='true'] {
      opacity: 1;
    }

    .text-block {
      display: inline-block;
    }

    @media (max-width: 749px) {
      --min-font-size: var(--font-size--3xl);
      --max-font-size: var(--font-size--5xl);

      [layout='spotlight'] & {
        white-space: nowrap;
        scroll-snap-align: start;

        span {
          text-wrap: nowrap;
        }
      }
    }
  }

  .collection-links__count {
    font-size: 0.5em;
    opacity: var(--disabled-opacity);
    font-weight: var(--font-paragraph--weight);
  }

  .collection-links__image {
    align-items: center;
    justify-content: center;

    &:not([hidden]) {
      display: flex;
    }

    &[reveal] {
      --offset: 15px;

      position: fixed;
      top: 0;
      left: 0;
      z-index: var(--layer-temporary);
      display: block;
      translate: calc(var(--x) + var(--offset)) calc(var(--y) + var(--offset));
      pointer-events: none;
      width: auto;

      image-block {
        --image-height-basis: 5rem;

        height: var(--image-height);
      }
    }
  }
/* END_BLOCK:_collection-link */

/* START_BLOCK:_featured-blog-posts-card (INDEX:117) */
.featured-blog-posts-card {
    width: 100%;
    position: relative;
    text-align: var(--text-align);
  }

  .featured-blog-posts-card__inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: var(--gap);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: var(--layer-flat);
    pointer-events: none;
  }

  .resource-list--grid .resource-list__item {
    min-width: 0;
  }

  /* Editorial layout */
  .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
    height: 100%;

    .featured-blog-posts-card__image,
    .blog-placeholder-svg {
      aspect-ratio: 99;
      height: 100%;
    }

    .featured-blog-posts-card__content {
      flex-shrink: 0;
      height: auto;
    }
  }

  @media (max-width: 768px) {
    .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
      .featured-blog-posts-card__image,
      .blog-placeholder-svg {
        aspect-ratio: unset;
      }
    }
  }

  .featured-blog-posts-card__inner a,
  .featured-blog-posts-card__inner button {
    pointer-events: auto;
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .featured-blog-posts-card__content * {
    pointer-events: auto;
  }

  .featured-blog-posts-card__content {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    gap: var(--gap);
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .featured-blog-posts-card__link {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
  }

  .featured-blog-posts-card__content h4 {
    margin: 0;
  }
/* END_BLOCK:_featured-blog-posts-card */

/* START_BLOCK:_featured-blog-posts-image (INDEX:118) */
.featured-blog-posts-card__image {
    width: 100%;
  }

  .featured-blog-posts-card__image .blog-placeholder-svg {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:_featured-blog-posts-image */

/* START_BLOCK:_featured-product (INDEX:122) */
.featured-product-content-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gap-sm);
  }

  .featured-product-content-bottom:not(:has(product-swatches)) {
    display: none;
  }
/* END_BLOCK:_featured-product */

/* START_BLOCK:_flag-trust (INDEX:124) */
.announcement-bar__text .flag-icon {
    height: auto;
    width: 14px;
    margin-left: 8px;
  }

  .announcement-bar__text .flag-icon > img {
    height: 100% !important;
    width: auto !important;
  }

  .text-block {
    width: var(--width);
    max-width: 100%;
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    /*text-wrap: balance;
    text-wrap: pretty;*/
  }

  .text-block:not(.text-block--full-width).h1,
  .text-block:not(.text-block--full-width).h2,
  .text-block:not(.text-block--full-width).h3,
  .text-block:not(.text-block--full-width).h4,
  .text-block:not(.text-block--full-width).h5,
  .text-block:not(.text-block--full-width).h6 {
    /*text-wrap: balance;*/
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }
/* END_BLOCK:_flag-trust */

/* START_BLOCK:_footer-social-icons (INDEX:125) */
.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:_gallery-card-expert-quote (INDEX:126) */
.gallery-card--expert-quote {
    background: #f3f8fe;
    position: relative;
  }

  .gallery-card--expert-quote .gallery-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    height: 100%;
    min-height: 0;
  }

  .gallery-card--expert-quote .gallery-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    justify-content: space-between;
    min-width: 0;
  }

  .gallery-card--expert-quote .gallery-card__title {
    font-family: 'Newsreader', serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 120%;
    color: #43334b;
    margin: 0;
  }

  .gallery-card--expert-quote .gallery-card__quote {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 140%;
    color: #43334b;
    font-style: italic;
  }

  .gallery-card--expert-quote .gallery-card__stats {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: auto;
  }

  .gallery-card--expert-quote .gallery-card__stat {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: linear-gradient(10deg, #ff8c21 0%, #f5576e 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 130%;
  }

  .gallery-card--expert-quote .gallery-card__portrait {
    position: relative;
    overflow: hidden;
  }

  .gallery-card--expert-quote .gallery-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  @media screen and (min-width: 750px) {
    .gallery-card--expert-quote .gallery-card__title {
      font-size: 1.375rem;
    }
  }
/* END_BLOCK:_gallery-card-expert-quote */

/* START_BLOCK:_gallery-card-phone-table (INDEX:127) */
.gallery-card--phone-table {
    background: #f3f8fe;
  }

  .gallery-card--phone-table .gallery-card__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    height: 100%;
    min-height: 0;
  }

  .gallery-card--phone-table .gallery-card__title {
    font-family: 'Newsreader', serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 120%;
    color: #43334b;
    margin: 0;
  }

  .gallery-card--phone-table .gallery-card__phone {
    position: relative;
    margin: 0 auto;
    width: min(220px, 70%);
    aspect-ratio: 9 / 18;
    background: #1f1f1f;
    border-radius: 24px;
    padding: 8px;
    flex: 1 1 auto;
    min-height: 0;
    box-shadow: 0 8px 24px rgba(67, 51, 75, 0.18);
  }

  .gallery-card--phone-table .gallery-card__phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 28%;
    height: 14px;
    background: #1f1f1f;
    border-radius: 999px;
    z-index: 2;
  }

  .gallery-card--phone-table .gallery-card__phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px 10px 10px;
    gap: 0.5rem;
  }

  .gallery-card--phone-table .gallery-card__phone-title {
    font-weight: 700;
    font-size: 0.6875rem;
    line-height: 120%;
    color: #43334b;
    padding: 0 4px;
  }

  .gallery-card--phone-table .gallery-card__table {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }

  .gallery-card--phone-table .gallery-card__table-section {
    font-weight: 700;
    font-size: 0.625rem;
    color: #43334b;
    padding: 4px 4px 2px;
    border-bottom: 1px solid #e4e9f3;
  }

  .gallery-card--phone-table .gallery-card__table-headers {
    display: flex;
    justify-content: space-between;
    font-size: 0.5625rem;
    font-weight: 500;
    color: #755c81;
    padding: 0 4px;
  }

  .gallery-card--phone-table .gallery-card__table-rows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 auto;
    min-height: 0;
  }

  .gallery-card--phone-table .gallery-card__table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 4px;
    font-size: 0.625rem;
    color: #43334b;
  }

  .gallery-card--phone-table .gallery-card__table-row-label {
    font-weight: 500;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Badge mode */
  .gallery-card--phone-table--badges .gallery-card__table-row-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.5625rem;
    color: #fff;
    white-space: nowrap;
  }

  .gallery-card--phone-table--badges .gallery-card__table-row[data-level='high'] .gallery-card__table-row-badge {
    background: #f5576e;
  }

  .gallery-card--phone-table--badges .gallery-card__table-row[data-level='medium'] .gallery-card__table-row-badge {
    background: #ff8c21;
  }

  .gallery-card--phone-table--badges .gallery-card__table-row[data-level='low'] .gallery-card__table-row-badge {
    background: #f5b53b;
  }

  .gallery-card--phone-table--badges .gallery-card__table-row[data-level='borderline'] .gallery-card__table-row-badge {
    background: #51b92c;
  }

  /* Progress mode */
  .gallery-card--phone-table--progress .gallery-card__table-row-progress {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 55%;
    flex: 0 0 55%;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row-bar {
    flex: 1 1 auto;
    height: 6px;
    border-radius: 999px;
    background: #e4e9f3;
    position: relative;
    overflow: hidden;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row-bar::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--bar-width, 0%);
    border-radius: 999px;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row[data-level='high'] .gallery-card__table-row-bar::before {
    background: #f5576e;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row[data-level='medium'] .gallery-card__table-row-bar::before {
    background: #ff8c21;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row[data-level='low'] .gallery-card__table-row-bar::before {
    background: #f5b53b;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row[data-level='borderline'] .gallery-card__table-row-bar::before {
    background: #51b92c;
  }

  .gallery-card--phone-table--progress .gallery-card__table-row-percent {
    font-weight: 600;
    font-size: 0.5625rem;
    color: #43334b;
    min-width: 28px;
    text-align: right;
  }

  .gallery-card--phone-table .gallery-card__footer-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    background: linear-gradient(10deg, #ff8c21 0%, #f5576e 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 130%;
    text-align: center;
  }

  @media screen and (min-width: 750px) {
    .gallery-card--phone-table .gallery-card__title {
      font-size: 1.375rem;
    }

    .gallery-card--phone-table .gallery-card__phone {
      width: min(260px, 60%);
    }
  }
/* END_BLOCK:_gallery-card-phone-table */

/* START_BLOCK:_gallery-card-steps (INDEX:128) */
.gallery-card {
    width: 100%;
    height: 100%;
    background: #f3f8fe;
    color: #43334b;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .gallery-card--steps .gallery-card__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    flex: 1 1 auto;
    min-height: 0;
  }

  .gallery-card--steps .gallery-card__title {
    font-family: 'Newsreader', serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    color: #43334b;
    margin: 0;
  }

  .gallery-card--steps .gallery-card__intro {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 140%;
    color: #43334b;
  }

  .gallery-card--steps .gallery-card__intro strong,
  .gallery-card--steps .gallery-card__intro b {
    font-weight: 700;
  }

  .gallery-card--steps .gallery-card__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
  }

  .gallery-card--steps .gallery-card__step {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 130%;
    color: #43334b;

    .gallery-card__step-text {
      font-weight: 500;
    }
  }

  .gallery-card--steps .gallery-card__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #43334b;
  }

  .gallery-card--steps .gallery-card__step-image {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    border-radius: 4px;
    overflow: hidden;
  }

  .gallery-card--steps .gallery-card__step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-card--steps .gallery-card__footer-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    border-radius: 4px;
    background: linear-gradient(10deg, #ff8c21 0%, #f5576e 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 130%;
  }

  .gallery-card--steps .gallery-card__footer-icon {
    flex: 0 0 20px;
    display: inline-flex;
  }

  @media screen and (min-width: 750px) {
    .gallery-card--steps .gallery-card__title {
      font-size: 1.5rem;
    }

    .gallery-card--steps .gallery-card__step {
      font-size: 0.9375rem;
    }
  }
/* END_BLOCK:_gallery-card-steps */

/* START_BLOCK:_gallery-card-test-scope (INDEX:129) */
.gallery-card--test-scope {
    background: #f3f8fe;
  }

  .gallery-card--test-scope .gallery-card__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    height: 100%;
    min-height: 0;
  }

  .gallery-card--test-scope .gallery-card__hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    transform: translateY(-25px);
  }

  .gallery-card--test-scope .gallery-card__hero img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .gallery-card__content {
    transform: translateY(-25px);
  }

  .gallery-card--test-scope .gallery-card__title {
    font-family: 'Newsreader', serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 140%;
    color: var(--color-purple);
    margin: 0;
  }

  .gallery-card--test-scope .gallery-card__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-card--test-scope .gallery-card__column-title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 130%;
    color: var(--color-purple);
    font-family: var(--font-family-body);
    margin: 0.25rem 0 0.25rem;
  }

  .gallery-card--test-scope .gallery-card__column-list {
    font-size: 0.9rem;
    line-height: 140%;
    font-weight: 500;
    color: var(--color-purple);
  }

  .gallery-card--test-scope .gallery-card__column-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .gallery-card--test-scope .gallery-card__column-list li {
    position: relative;
    padding-left: 1.125rem;
  }

  .gallery-card--test-scope .gallery-card__column-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: var(--color-purple);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% 70%;
  }

  @media screen and (min-width: 750px) {
    .gallery-card--test-scope .gallery-card__title {
      font-size: 1.375rem;
    }
  }
/* END_BLOCK:_gallery-card-test-scope */

/* START_BLOCK:_header-logo (INDEX:130) */
.header-logo {
    display: flex;
    height: 100%;
    font-size: var(--font-size--md);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    color: var(--color-foreground);
    justify-content: center;
    align-items: center;
    text-decoration: none;

    /* Make sure the logo visually hugs the left edge of the column when it is the first item in the left column */
    margin-inline: calc(-1 * var(--padding-inline-start));

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

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

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

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

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

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

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

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

  .header-logo__image-container--inverse {
    display: var(--header-logo-inverse-display, none);
  }
/* END_BLOCK:_header-logo */

/* START_BLOCK:_header-menu (INDEX:131) */
.menu-list--mobile {
    &.menu-list {
      display: grid;
    }

    & .menu-list__list {
      width: max-content;
      margin-inline: auto;
      gap: var(--menu-horizontal-gap);
    }

    & li {
      width: max-content;
      padding-block: var(--padding-sm);
    }

    & li:first-of-type {
      padding-inline-start: var(--menu-horizontal-gap);
    }

    & li:last-of-type {
      padding-inline-end: var(--menu-horizontal-gap);
    }

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

  .menu-list__scroll-container {
    position: relative;
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    padding-block: var(--padding-2xs);
  }

  header-menu {
    width: 100%;
  }

  /* Drawer menu featured content */
  .menu-drawer__featured-content {
    z-index: var(--layer-base);
    container-type: inline-size;
  }

  .menu-drawer__featured-content--childlist {
    z-index: var(--layer-flat);
  }

  .menu-drawer__featured-content-list {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding-block-end: var(--padding-lg);
  }

  .menu-drawer__featured-content-list-item {
    flex: 0 0 auto;
  }

  .menu-drawer__featured-content-list-item--product {
    width: 35cqi;
  }

  .menu-drawer__featured-content-list-item--collection img.resource-card__image {
    width: 80cqi;
  }

  .menu-drawer__featured-content-list-item:first-child {
    margin-inline-start: var(--margin-xl);
  }

  .menu-drawer__featured-content-list-item:last-child {
    margin-inline-end: var(--margin-xl);
  }

  .menu-list {
    --menu-horizontal-gap: var(--gap-xl);
    --menu-vertical-gap: var(--gap-xl);

    display: flex;
  }

  .menu-list__list {
    display: flex;
    justify-content: var(--grid-area-alignment);
  }

  .menu-list__list-item {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .menu-list__list-item[aria-hidden='true'] {
    visibility: hidden;
  }

  .menu-list__link {
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    transition: color var(--animation-speed) var(--animation-easing);
    text-decoration: none;
    display: flex;
    min-height: var(--minimum-touch-target);
    align-items: center;

    &:hover,
    &:focus {
      color: var(--menu-top-level-font-color);
    }

    @media screen and (min-width: 750px) {
      font-size: var(--menu-top-level-font-size-desktop);
    }
  }

  /*
      High specificity selectors to subdue non-hovered links without javascript.
      If the need for js-generated `hovered` and `focused` classes arises for another reason we can simplify these.
    */
  .menu-list:where(:has(.menu-list__list-item:hover)),
  .menu-list:where(:has(.menu-list__list-item:focus-within)),
  .menu-list:where(:has(.menu-list__list-item:not([aria-hidden='true']) .menu-list__link--active)) {
    .menu-list__link {
      color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
    }
  }

  /* stylelint-disable-next-line selector-max-specificity */
  .menu-list:not(:has(.menu-list__list-item:hover)) .menu-list__link--active,
  .menu-list .menu-list__list-item:where(:hover, :focus-within) .menu-list__link,
  .menu-list .menu-list__list-item[slot='overflow'] .menu-list__link[aria-expanded='true'] {
    color: var(--menu-top-level-font-color);
  }

  .overflow-menu::part(list) {
    /* Make sure focus outline is not cut off by overflow hidden */
    --focus-outline-size: calc(var(--focus-outline-offset) + var(--focus-outline-width));

    gap: 0 var(--menu-horizontal-gap);
  }

  .overflow-menu {
    background-color: transparent;
    padding: var(--focus-outline-size);
    margin: calc(-1 * var(--focus-outline-size));
  }

  /* the submenu background element to animate */
  .overflow-menu::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px + var(--border-bottom-width));
    left: 0;
    width: 100%;
    height: var(--submenu-height);
    background-color: var(--color-background);
    box-shadow: var(--shadow-popover);
    clip-path: inset(0.5px 0 -100px 0); /* stylelint-disable-line */
    opacity: var(--submenu-opacity, 1);
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic),
      opacity var(--animation-speed-slow) var(--ease-out-cubic) var(--animation-speed-fast);
    z-index: calc(var(--layer-header-menu) - 1);
  }

  /** mega menu **/
  .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-padding-block-start: var(--padding-3xl);
    --submenu-padding-block-end: var(--padding-3xl);

    background-color: transparent;
  }

  .header__row[style*='--border-bottom-width: 0px'] {
    .menu-list__submenu.color-scheme-matches-parent,
    .overflow-menu.color-scheme-matches-parent::part(overflow) {
      --submenu-padding-block-start: 0px;
    }
  }

  .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-content-opacity: 0;
    --submenu-content-animation: opacity calc(var(--submenu-animation-speed) * 0.75) var(--animation-easing);

    box-shadow: var(--shadow-drawer);
    visibility: hidden;
    background-color: var(--color-background);
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% - 1px + var(--border-bottom-width));
    z-index: var(--layer-header-menu);
    padding-inline: var(--padding-inline);
    clip-path: rect(0 100% var(--submenu-height) 0); /* stylelint-disable-line */
    transition: clip-path var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  /* Show the submenus on hover */
  .menu-list__list-item:has([aria-expanded='true']) > .menu-list__submenu,
  /* Show the overflow menu when a menu item is hovered */
  .overflow-menu:has([slot="overflow"] [aria-expanded='true'])::part(overflow),
  /* Keep the submenus open when they are hovered */
  .menu-list__submenu:is(:hover),
  .overflow-menu::part(overflow):hover {
    --submenu-content-opacity: 1;

    visibility: visible;
  }

  .menu-list__list-item:has([data-animating]) > .menu-list__submenu {
    --submenu-content-opacity: 0;

    visibility: visible;

    &::before {
      height: 0;
    }
  }

  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    grid-column: 2;
    padding-block-start: var(--submenu-padding-block-start);
    padding-block-end: var(--submenu-padding-block-end);
    padding-inline: var(--section-padding-inline);
  }

  .overflow-menu::part(overflow) {
    --menu-top-level-font-size: var(--font-size--xlarge);

    display: grid;
    grid-template-columns: var(--full-page-grid-with-margins);
  }

  .overflow-menu::part(overflow-list) {
    --submenu-content-opacity: 0;

    position: relative;
    display: grid;
    grid-template-columns: minmax(auto, 200px) 1fr;
    grid-template-areas: 'left right';
    grid-template-rows: max-content;
    grid-gap: 0;
  }

  /* Make overflow menu scrollable when content exceeds viewport */
  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    max-height: calc(80vh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) transparent;
  }

  .menu-list__list-item:is([slot='overflow']) {
    --menu-top-level-font-color: var(--color-foreground);
    --menu-top-level-font-color-rgb: var(--color-foreground-rgb);

    display: contents;
    white-space: normal;

    .menu-list__link {
      --submenu-content-opacity: 0;

      grid-area: left;
      grid-row: auto;
      height: min-content;
      font-size: var(--font-size--xl);
      opacity: var(--submenu-content-opacity);
      transition: var(--submenu-content-animation);
    }

    .menu-list__submenu {
      visibility: hidden;
      grid-row: 1;
      grid-area: right;
      grid-row-end: span calc(var(--overflow-count) + 1);
      padding-inline-start: var(--menu-horizontal-gap);

      .menu-list__submenu-inner {
        padding-block-start: 0;
        grid-column: unset;
      }
    }

    .menu-list__link[aria-expanded='true'] + .menu-list__submenu {
      visibility: visible;
    }
  }

  .header-menu[data-overflow-expanded='true'] .menu-list__list-item:where([slot='overflow']) .menu-list__link {
    --submenu-content-opacity: 1;
  }

  .menu-list__list-item:where([slot='overflow']):has([data-animating]) > .menu-list__link {
    --submenu-content-opacity: 0;
  }

  .menu-list__submenu-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: var(--submenu-content-opacity);
    transition: var(--submenu-content-animation);
  }

  .mega-menu__link {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);
    white-space: normal;
    text-decoration: none;
    display: inline-flex;
    padding: var(--padding-2xs) 0;
    transition: color var(--animation-speed) var(--animation-easing);

    &:hover {
      color: var(--menu-child-active-font-color);
    }
  }

  .mega-menu__link--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-active-font-color);
    }
  }

  @media screen and (max-width: 989px) {
    .mega-menu__content-list-item--hidden-tablet {
      display: none;
    }
  }

  .mega-menu__link:has(.mega-menu__link-image) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    object-fit: cover;
    border-radius: var(--menu-image-border-radius);
  }

  /* Fix alignment for collection image mode links without images */

  /* Target only top-level links (direct children of column > div) in collection image mode */
  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image)) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(var(--menu-columns-tablet), minmax(0, 1fr));
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
    width: 100%;

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__column {
    grid-column: span 1;
  }

  .mega-menu__column--span-2 {
    grid-column: span 2;
  }

  .mega-menu__column--span-3 {
    grid-column: span 3;
  }

  .mega-menu__column--span-4 {
    grid-column: span 4;
  }

  .mega-menu__column--wide-collection-image {
    grid-column: span 1;

    @media screen and (min-width: 990px) {
      grid-column: span 2;
    }
  }

  .mega-menu__submenu .mega-menu__column--wide-collection-image {
    grid-column: span 1;
  }

  .mega-menu__content-list {
    display: grid;
    justify-content: end;
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
  }

  .mega-menu__content-list--products {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 1fr));

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

  .mega-menu__content-list--collections {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 300px));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 300px));
    }
  }

  .mega-menu__list {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span var(--menu-columns-tablet);
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-columns-desktop);
    }
  }

  .mega-menu__content {
    grid-column: span var(--menu-content-columns-tablet) / -1;

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-content-columns-desktop) / -1;
    }
  }

  .menu-list__list-item[slot='overflow'] .section {
    grid-template-columns: 1fr;
  }

  .menu-list__list-item[slot='overflow'] .section .mega-menu__grid {
    grid-column: 1;
  }

  .mega-menu__content-list li {
    white-space: normal;
  }

  /* mega more menu */
  .mega-menu__more-list {
    --menu-child-font-size: var(--font-size--xl);

    width: 200px;
  }

  .mega-menu__more-list-item .mega-menu__link {
    color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
  }

  .mega-menu__more-list-item:where(:hover, .active) .mega-menu__link {
    color: var(--menu-top-level-font-color);
  }

  .mega-menu__more-list-item[aria-hidden='true'] {
    display: none;
  }

  .mega-menu__submenu {
    /* preserves the inherited grid layout when this submenu wrapper is used */
    display: contents;
  }
/* END_BLOCK:_header-menu */

/* START_BLOCK:_image (INDEX:133) */
image-block {
    --image-height-basis: 10rem;
    --image-height-small: calc(var(--image-height-basis) * 2);
    --image-height-medium: calc(var(--image-height-basis) * 3);
    --image-height-large: calc(var(--image-height-basis) * 4);

    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: var(--ratio);
    width: 100%;
    max-width: calc(var(--image-height) * var(--ratio));
    height: var(--image-height);
    overflow: hidden;

    @media screen and (min-width: 750px) {
      --image-height-small: calc(var(--image-height-basis) * 2.5);
      --image-height-medium: calc(var(--image-height-basis) * 3.5);
      --image-height-large: calc(var(--image-height-basis) * 4.5);
    }

    @media screen and (max-width: 749px) {
      height: auto;
    }

    &[height='small'] {
      --image-height: var(--image-height-small);
    }

    &[height='medium'] {
      --image-height: var(--image-height-medium);
    }

    &[height='large'] {
      --image-height: var(--image-height-large);
    }

    &[ratio='portrait'] {
      --ratio: 4 / 5;
    }

    &[ratio='square'] {
      --ratio: 1 / 1;

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

    &[ratio='landscape'] {
      --ratio: 16 / 9;
    }

    img {
      object-fit: cover;
      width: 100%;
      height: auto;
      aspect-ratio: var(--ratio);
      border-radius: var(--border-radius);
    }
  }
/* END_BLOCK:_image */

/* START_BLOCK:_marquee (INDEX:136) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-background);
  }

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

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

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

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

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

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

  .hero__content-wrapper.layout-panel-flex--column marquee-component {
    --margin-inline: var(--full-page-margin-inline-offset);

    width: -webkit-fill-available;
    min-height: max-content;
  }

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

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

/* START_BLOCK:_product-card-gallery (INDEX:139) */
.product-badges__badge {
    padding: 8px 16px;
}
.features-items {
    padding: 0 24px;
}
a.contents.user-select-text {
  padding: 0 24px;
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
}
/* END_BLOCK:_product-card-gallery */

/* START_BLOCK:_product-details (INDEX:142) */
ul.c-product-header_checks {
    grid-template-columns: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    list-style: none;
}
ul.c-product-header_checks li {
    width: 49%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 21px;
    color: #755C81;
    text-align: left;
}
ul.c-product-header_checks li img {
    /* width: 14px; */
    /* height: 14px; */
}
  /* ------------------------------------------------------------------------------- CUSTOM STYLE */
  @media screen and (min-width: 1225px) {
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
  }

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

  .product-details {
    /*display: flex;
    flex-direction: column;
    align-items: flex-start;*/
    padding: 0px;
    gap: 4px;

    max-width: 680px;
    width: 100%;
  }

  /* ------------------------------------------------------------------------------- PRE STYLE */
  /* Clear padding on mobile, if not full-width */
  @media screen and (max-width: 749px) {
    .product-information.section--page-width .product-details > .group-block {
      padding-inline: 0;
    }
  }

  .view-product-title {
    display: none;
  }

  /* Container styles */
  .product-details {
    display: flex;
    align-self: start;
    justify-content: center;
  }

  .product-details > .group-block > .group-block-content {
    gap: 4px !important;
  }

  @media screen and (min-width: 750px) {
    .product-details > .group-block {
      height: min-content;
    }

    .full-height--desktop {
      height: 100%;
      max-height: calc(100vh - var(--header-group-height, 0));
      min-height: fit-content;
    }

    .full-height--desktop .group-block {
      align-self: var(--details-position, 'flex-start');
    }
  }
/* END_BLOCK:_product-details */

/* START_BLOCK:_product-media-gallery (INDEX:146) */
.dialog-zoomed-gallery {
    cursor: zoom-out;
  }

  .dialog--preloading {
    opacity: 0;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
    max-height: 100vh;
    overflow: clip;
  }

  ul.dialog-zoomed-gallery.list-unstyled > li {
    @media screen and (max-width: 749px) {
      flex: 0 0 100%; /* each item takes full width */
      scroll-snap-align: start;
    }
  }
  @media screen and (max-width: 749px) {
    .dialog-zoomed-gallery {
      /* Prevent scroll wheel or swipe scrolling */
      /*overscroll-behavior: none;
      scrollbar-width: none;
      display: flex;
      scroll-snap-type: x mandatory;
      overflow-x: hidden;
      scroll-behavior: smooth;
      height: 100%;*/

      overscroll-behavior: none;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
      display: flex;
      scroll-snap-type: x mandatory;
      overflow-x: scroll;
      overflow-y: hidden;
      scroll-behavior: smooth;
      height: 100%;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .dialog-zoomed-gallery .product-media-container {
      flex: 0 0 100%;
      scroll-snap-align: start;
      position: relative;
    }

    .dialog-zoomed-gallery .product-media-container--image .product-media {
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: hidden;
    }

    .dialog-zoomed-gallery .product-media-container--video,
    .dialog-zoomed-gallery .product-media-container--external_video {
      align-content: center;
    }

    .dialog-zoomed-gallery
      :is(.product-media-container--video, .product-media-container--external_video, .product-media-container--model)
      .product-media {
      aspect-ratio: auto;
      align-items: center;
      height: 100%;

      .product-media__image {
        height: 100%;
      }
    }

    .product-media__drag-zoom-wrapper {
      display: flex;
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: scroll;
      scrollbar-width: none;
      justify-content: center;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .product-media__drag-zoom-wrapper .product-media__image {
      --product-media-fit: contain;

      object-fit: var(--product-media-fit);
      overflow: hidden;
      transform: scale(var(--drag-zoom-scale))
        translate(var(--drag-zoom-translate-x, 0), var(--drag-zoom-translate-y, 0));
    }

    .media-gallery--hint {
      --slideshow-gap: var(--gap-2xs);

      :not(.dialog-zoomed-gallery) > .product-media-container:not(:only-child) {
        width: 90%;

        .product-media img {
          object-fit: cover;
        }
      }
    }
  }

  .dialog-zoomed-gallery__close-button {
    color: #fff;
    mix-blend-mode: difference;
    z-index: var(--layer-raised);
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  @media screen and (min-width: 1225px) {
    .dialog-zoomed-gallery .product-media-container--zoomable.product-media-container--image {
      max-width: 1440px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .dialog-zoomed-gallery .product-media-container--zoomable.product-media-container--image .product-media {
      max-height: 100dvh;
      min-height: unset;
      height: 100%;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .dialog-zoomed-gallery .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-out;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }

  .dialog-zoomed-gallery .product-media-container--video deferred-media,
  .dialog-zoomed-gallery .product-media-container--external_video deferred-media {
    height: auto;
    aspect-ratio: var(--ratio);
  }

  .dialog-zoomed-gallery .product-media-container--model .product-media__image {
    /* Make the height match the height of the model-viewer */
    height: 100svh;
  }

  /* ----- ----- */
  .zoom-nav-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--color-background);
    color: var(--color-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .zoom-nav-button--prev {
    left: 16px;
    transform: translateY(-50%) rotate(90deg);
  }

  .zoom-nav-button--next {
    right: 16px;
    transform: translateY(-50%) rotate(-90deg);
  }

  .zoom-nav-button svg {
    width: 16px;
    height: 16px;
    color: #43334b;
  }

  /* Hide on desktop if you only want them on mobile */
  @media screen and (min-width: 750px) {
    .zoom-nav-button {
      display: none;
    }
  }

  /* Variant-c: stack media-gallery + audio-message into one column so the desktop
     sticky behavior (sticky-content--desktop on the wrapper) keeps them pinned
     together. The section file (sections/product-information.liquid) makes
     <media-gallery> sticky directly on desktop — for variant-c we override that
     so the wrapper is the sticky element, otherwise nested sticky causes the
     gallery to overlap the audio-message. */
  .variant-c,
  .variant-d,
  .variant-e {
    .product-media-gallery__stack {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .product-media-gallery__stack > media-gallery {
      position: static;
      top: auto;
    }

    @media screen and (min-width: 750px) {
      .product-media-gallery__stack {
        top: calc(var(--header-height) + 3em);
      }
    }

    /* The merchant-configured audio_message_christiane block already shows on
       mobile inside product-details; the gallery copy is desktop-only. */
    .product-media-gallery__stack .audio-message {
      display: none;
    }

    @media screen and (min-width: 750px) {
      .product-media-gallery__stack .audio-message {
        display: flex;
      }
    }

    /* Gallery thumbnails: centered 3-up row of rounded blue-bordered tiles
       with circular chevron arrow buttons sitting alongside them.
       Applies on every viewport — desktop matches the mobile treatment. */
    media-gallery .slideshow-controls__thumbnails > .slideshow-controls__thumbnail {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 77px;
      height: 77px;
      padding: 0.75rem;
      gap: 10px;
      border: 1px solid #a7c2eb;
      border-radius: 8px;
      outline: unset;
    }

    media-gallery .slideshow-controls__thumbnails .slideshow-control[aria-selected='true'] {
      outline: 1px solid #a7c2eb;
      outline-offset: 0px;
    }

    media-gallery .slideshow-controls__thumbnails .slideshow-control:focus-visible {
      outline: 2px solid #a7c2eb;
    }

    media-gallery slideshow-component:has(slideshow-controls[thumbnails]) .slideshow-controls__thumbnails-container {
      max-width: calc(3 * 77px + 2 * 16px);
      margin-inline: auto;
      padding-inline: 0;
      mask-image: none !important;
    }

    media-gallery slideshow-component:has(slideshow-controls[thumbnails]) .slideshow-controls__thumbnails {
      gap: 0.25rem;
    }

    media-gallery slideshow-component:has(slideshow-controls[thumbnails]) slideshow-arrows {
      inset: unset;
      left: 0;
      right: 0;
      bottom: -89px;
      height: 77px;
      align-items: center;
      mix-blend-mode: normal;
      pointer-events: none;
      padding-inline: calc((77px - 40px) / 2);
    }

    media-gallery slideshow-component:has(slideshow-controls[thumbnails]) slideshow-arrows .slideshow-control {
      pointer-events: auto;
      opacity: 1;
      width: 40px;
      height: 40px;
      min-height: 40px;
      padding: 0;
      background-color: #bad1f2;
      border-radius: 50%;
      color: #5b6478;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    media-gallery
      slideshow-component:has(slideshow-controls[thumbnails])
      slideshow-arrows
      .slideshow-control
      .svg-wrapper {
      display: inline-flex;
      width: 20px;
      height: 20px;
      color: #43334b;
    }

    media-gallery slideshow-component:has(slideshow-controls[thumbnails]) slideshow-arrows .slideshow-control svg {
      width: 100%;
      height: 100%;
    }
  }
  :is(.variant-d, .variant-e) slideshow-container,
  :is(.variant-d, .variant-e) .slideshow-control {
    background: var(--card-bg);
    border-radius: 4px;
  }

  :is(.variant-d, .variant-e) {
    .slideshow-controls__thumbnails {
      padding: 0;

      img {
        border-radius: 3px;
      }
    }
    .slideshow-control {
      outline: none !important;
      border: none !important;
      border-radius: 4px !important;
    }
    slideshow-controls {
      margin-top: 0.25rem;
    }
  }

  /* Variant D thumbnails: Safari has a flex aspect-ratio bug, so instead we compute
     both width and height from container query width units. Both resolve to the
     same value → guaranteed squares without relying on aspect-ratio. */
  :is(.variant-d, .variant-e)
    media-gallery
    slideshow-component:has(slideshow-controls[thumbnails])
    .slideshow-controls__thumbnails-container {
    container-type: inline-size;
  }

  /* Variant D mobile thumbnails: 4-up visible, horizontal scroll for the rest, no arrows. */
  @media screen and (max-width: 749px) {
    :is(.variant-d, .variant-e)
      media-gallery
      slideshow-component:has(slideshow-controls[thumbnails])
      .slideshow-controls__thumbnails-container {
      max-width: none;
      overflow-x: auto;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
    }

    :is(.variant-d, .variant-e)
      media-gallery
      slideshow-component:has(slideshow-controls[thumbnails])
      .slideshow-controls__thumbnails-container::-webkit-scrollbar {
      display: none;
    }

    :is(.variant-d, .variant-e) media-gallery .slideshow-controls__thumbnails > .slideshow-controls__thumbnail {
      --thumb-size: calc((100cqw - 3 * 0.25rem) / 4);
      width: var(--thumb-size);
      height: var(--thumb-size);
      min-height: var(--thumb-size);
      flex: 0 0 auto;
      min-width: 0;
      padding: 0.5rem;
      scroll-snap-align: start;
    }

    :is(.variant-d, .variant-e) media-gallery slideshow-component:has(slideshow-controls[thumbnails]) slideshow-arrows {
      display: none;
    }
  }

  /* Variant D desktop thumbnails: 5-up spanning full column width, no arrows. */
  @media screen and (min-width: 750px) {
    :is(.variant-d, .variant-e)
      media-gallery
      slideshow-component:has(slideshow-controls[thumbnails])
      .slideshow-controls__thumbnails-container {
      max-width: none;
    }

    :is(.variant-d, .variant-e) media-gallery .slideshow-controls__thumbnails > .slideshow-controls__thumbnail {
      --thumb-size: calc((100cqw - 4 * 0.25rem) / 5);
      width: var(--thumb-size);
      height: var(--thumb-size);
      min-height: var(--thumb-size);
      flex: 0 0 auto;
      min-width: 0;
      padding: 0.5rem;
    }

    :is(.variant-d, .variant-e) media-gallery slideshow-component:has(slideshow-controls[thumbnails]) slideshow-arrows {
      display: none;
    }
  }
/* END_BLOCK:_product-media-gallery */

/* START_BLOCK:_search-input (INDEX:147) */
.search-page-input {
    width: 100%;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding-block: var(--padding-lg);
    padding-inline: calc(var(--icon-size-lg) + var(--margin-xl) * 1.5);
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);

    @media screen and (max-width: 749px) {
      padding-inline: calc(var(--margin-xs) + var(--icon-size-lg) + var(--padding-md));
    }
  }

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

  .search-page-input__parent {
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .search-results__no-results {
    opacity: var(--opacity-subdued-text);
  }

  search-page-input-component {
    position: relative;
    width: 100%;
    display: flex;
    top: 0;
    max-width: var(--size-style-width);
    align-items: center;
    background-color: var(--color-background);
    margin: var(--margin-2xl) 0 var(--margin-md);

    @media screen and (max-width: 749px) {
      max-width: 100%;
    }
  }

  search-page-input-component .search__icon,
  search-page-input-component .search__icon:hover,
  search-page-input-component .search__reset-button,
  search-page-input-component .search__reset-button:hover {
    background: transparent;
    position: absolute;
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  search-page-input-component .search__icon svg,
  search-page-input-component .search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  search-page-input-component .search__icon svg {
    color: var(--color-input-text);
  }

  search-page-input-component .search__icon {
    left: var(--margin-lg);

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

  search-page-input-component .search__reset-button {
    border-radius: 100%;
    color: var(--color-input-text);
    right: var(--margin-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing);

    @media screen and (max-width: 749px) {
      right: var(--margin-md);
    }
  }

  search-page-input-component:has(.search-page-input:not(:placeholder-shown)) .search__reset-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  search-page-input-component .search__reset-button-icon {
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  search-page-input-component .search__reset-button:active .search__reset-button-icon {
    transform: scale(0.9);
  }

  search-page-input-component .search__reset-button-icon svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  search-page-input-component .search__reset-button--hidden {
    cursor: default;
    opacity: 0;
    transition: opacity var(--animation-speed) var(--animation-easing);
    pointer-events: none;
    visibility: hidden;
  }

  search-page-input-component .search__reset-button-text {
    display: none;
  }
/* END_BLOCK:_search-input */

/* START_BLOCK:_slide (INDEX:148) */
.slide__content {
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
  }

  .slide__content > * {
    margin: auto;
  }

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

  slideshow-slide > .slide__image-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .slide__image-container > placeholder-image,
  .slide__image-container > placeholder-image > img {
    width: 100%;
  }

  .slide__image-container > .slide__image,
  .slide__image-container > .slide__video,
  .slide__image-container > .slide__video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .slide__image-container > .slide__video-poster {
    position: absolute;
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-link (INDEX:149) */
.social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    fill: currentColor;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:_social-link */

/* START_BLOCK:accelerated-checkout (INDEX:151) */
.accelerated-checkout-block[data-shopify-visual-preview] {
    width: 300px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  more-payment-options-link a {
    --button-color: var(--color-primary);
  }

  more-payment-options-link a:hover {
    --button-color: var(--color-primary-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }

  .accelerated-checkout-block__ctas-express-checkout-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #2E2533;
    margin-bottom: 4px;
  }

  .accelerated-checkout-block__ctas-express-checkout-title {
    height: 18px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    color: #43334B;
  }

  .accelerated-checkout-block__ctas-express-checkout-divider::before,
  .accelerated-checkout-block__ctas-express-checkout-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #BAD1F2;
    margin: 0 8px;
  }

  @media screen and (min-width: 810px) {
    .accelerated-checkout-block__payment-icons {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 16px;
    }

    .accelerated-checkout-block__payment-icons-list {
      /*align-items: center;
      padding: 0px;
      gap: 4px;
      height: 30px;*/
    }
  }

  @media screen and (max-width: 809px) {
    .accelerated-checkout-block__payment-icons{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;

      gap: 4px;
    }

    .accelerated-checkout-block__payment-icons-list {
      /*justify-content: space-between;*/
    }
  }

  .accelerated-checkout-block__payment-icons {
    padding: 0px;
    margin-top: 8px;
  }

  .accelerated-checkout-block__payment-icons-title {
    height: 18px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    color: #43334B;
    flex-shrink: 0;
  }

  .accelerated-checkout-block__payment-icons-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
  }



  .accelerated-checkout-block__payment-icons-list > svg {
    width: 50px;
    height: 30px;
    flex: none;
    flex-grow: 0;
  }
/* END_BLOCK:accelerated-checkout */

/* START_BLOCK:accordion-metaobject (INDEX:152) */
.accordion {
    flex: 1;
    width: 100%;
  }

  .accordion--dividers accordion-custom:not(:first-child) .details {
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* When accordion borders are not set, show fallback borders */
  .accordion--dividers {
    /* stylelint-disable-next-line declaration-property-value-disallowed-list */
    --show-fallback-borders: 0;
  }

  .accordion--dividers:not([class*='color-'])[style*='--border-width: 0'],
  .accordion--dividers:not([class*='color-'])[style*='--border-style: none'] {
    --show-fallback-borders: 1;
  }

  .accordion--dividers accordion-custom:first-child .details {
    border-block-start: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers accordion-custom:last-child .details {
    border-block-end: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers .details-content {
    padding-block-end: var(--padding-sm);
  }

  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }

  /* because we can't pass apply a specific class on a block based on its parent block setting 
  .accordion .details__header {
    font-family: var(--summary-font-family);
    font-style: var(--summary-font-style);
    font-weight: var(--summary-font-weight);
    font-size: var(--summary-font-size);
    line-height: var(--summary-font-line-height);
    text-transform: var(--summary-font-case);
    min-height: var(--minimum-touch-target);
  }*/
/* END_BLOCK:accordion-metaobject */

/* START_BLOCK:accordion (INDEX:153) */
.accordion {
    flex: 1;
    width: 100%;
  }

  .accordion--dividers accordion-custom:not(:first-child) .details {
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* When accordion borders are not set, show fallback borders */
  .accordion--dividers {
    /* stylelint-disable-next-line declaration-property-value-disallowed-list */
    --show-fallback-borders: 0;
  }

  .accordion--dividers:not([class*='color-'])[style*='--border-width: 0'],
  .accordion--dividers:not([class*='color-'])[style*='--border-style: none'] {
    --show-fallback-borders: 1;
  }

  .accordion--dividers accordion-custom:first-child .details {
    border-block-start: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers accordion-custom:last-child .details {
    border-block-end: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers .details-content {
    padding-block-end: var(--padding-sm);
  }

  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }

  /* because we can't pass apply a specific class on a block based on its parent block setting 
  .accordion .details__header {
    font-family: var(--summary-font-family);
    font-style: var(--summary-font-style);
    font-weight: var(--summary-font-weight);
    font-size: var(--summary-font-size);
    line-height: var(--summary-font-line-height);
    text-transform: var(--summary-font-case);
    min-height: var(--minimum-touch-target);
  }*/

   /*@media screen and (max-width:749px){
    .text-wrap .spacing-style p {
      font-size: 16px;
    } 
  }*/
/* END_BLOCK:accordion */

/* START_BLOCK:alert (INDEX:157) */
.alert {
    --alert-bg: #f3f8fe;
    --alert-fg: #0e2147;
    --alert-radius: 0.25rem;
    --alert-icon-size: 1.125rem;
    --alert-gap-x: 0.625rem;
    --alert-gap-y: 0.25rem;
    margin: 4px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: var(--alert-gap-x);
    padding: 0.5rem;
    border-radius: var(--alert-radius);
    background-color: var(--alert-bg);
    color: var(--alert-fg);
  }

  .alert--success {
    --alert-bg: #def1e1;
    --alert-fg: #0f3b1e;
  }

  .alert--warning {
    --alert-bg: #fdf1d0;
    --alert-fg: #3f2f00;
  }

  .alert--error {
    --alert-bg: #f9d9d6;
    --alert-fg: #4a0f0f;
  }

  .alert__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-block-start: 0.125rem;
    color: var(--alert-fg);
  }

  .alert__icon svg,
  .alert__icon img {
    display: block;
    width: var(--alert-icon-size);
    height: var(--alert-icon-size);
  }

  .alert__content {
    display: flex;
    flex-direction: column;
    gap: var(--alert-gap-y);
    min-width: 0;
  }

  .alert__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: inherit;
  }

  .alert__description {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: inherit;
    opacity: 0.9;
  }

  @media screen and (min-width: 750px) {
    .alert {
      margin: 0 0 0.75rem;
    }
  }
/* END_BLOCK:alert */

/* START_BLOCK:buy-buttons-custom-atc (INDEX:162) */
.product-details .buy-buttons-block {
    width: 100%;
    padding: 16px;
    background: #f3f8fe;
    border-radius: 4px;
  }

  .product-form-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .product-form-buttons > *:not(.quantity-selector) {
    flex: 1 1 185px;
    min-width: fit-content;
  }

  .product-form-buttons--stacked > *:not(.quantity-selector) {
    flex-basis: 51%; /* Force the buttons to be on separate rows */
  }

  .quantity-selector {
    flex-grow: 0;
  }

  .product-form-buttons button {
    width: 100%;
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  .buy-buttons-custom-atc .add-to-cart-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    gap: 10px;
    height: 64px;
    background: linear-gradient(48.59deg, #ff8c21 0%, #f5576e 100%);
    border-radius: 32px;
    text-transform: var(--button-text-case-primary);
  }

  .buy-buttons-custom-atc .add-to-cart-button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .product-form-buttons .shopify-payment-button__button {
    width: 100%;
    min-height: var(--minimum-touch-target);
  }

  /*.quantity-selector,
  .add-to-cart-button {
    height: var(--height-buy-buttons);
  }*/

  .product__pickup-availabilities {
    width: 100%;
  }

  .pickup-availability__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pickup-availability__row {
    display: flex;
    gap: var(--padding-xs);
  }

  .pickup-availability__dialog-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pickup-availability__header-container {
    padding-block-end: var(--padding-2xl);
  }

  .pickup-location__wrapper {
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-2xl);
    border-top: 1px solid var(--color-border);
    gap: var(--padding-xs);
  }

  .pickup-location__address-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .pickup-location__dialog {
    padding: var(--padding-2xl);
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    border: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  .pickup-location__dialog:modal {
    max-height: 100dvh;
  }

  .pickup-location__text-sm {
    font-size: var(--font-size--sm);
    margin: 0;
  }

  .pickup-location__text-xs {
    font-size: var(--font-size--xs);
    margin: 0;
  }

  .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
  }

  .pickup-location__button {
    width: fit-content;
    color: var(--color-primary);
    font-size: var(--font-size--xs);
    font-family: var(--font-body--family);
    padding: 0;
    cursor: pointer;
    margin-block: var(--margin-xs);
  }

  .pickup-location__button:hover {
    color: var(--color-primary-hover);
  }

  .pickup-location__h4 {
    margin: 0;
  }

  .pickup-location__text-bold {
    font-size: var(--font-size--md);
    font-weight: 600;
    margin: 0;
  }

  .pickup-location__availability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-paragraph--family);
  }

  .pickup-location__address {
    font-style: normal;
  }

  .pickup-location__close-button {
    top: calc(var(--padding-2xl) - (var(--icon-size-xs) / 2));
    right: calc(var(--padding-2xl) - var(--icon-size-xs));
  }
/* END_BLOCK:buy-buttons-custom-atc */

/* START_BLOCK:buy-buttons-grid (INDEX:163) */
.buy-buttons-block {
    width: 100%;
  }

  .product-form-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .product-form-buttons > *:not(.quantity-selector) {
    flex: 1 1 185px;
    min-width: fit-content;
  }

  .product-form-buttons--stacked > *:not(.quantity-selector) {
    flex-basis: 51%; /* Force the buttons to be on separate rows */
  }

  .quantity-selector {
    flex-grow: 0;
  }

  .product-form-buttons button {
    width: 100%;
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  .buy-buttons-block-grid .add-to-cart-button {
    text-transform: var(--button-text-case-primary);
  }

  .buy-buttons-block-grid .add-to-cart-button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .product-form-buttons .shopify-payment-button__button {
    width: 100%;
    min-height: var(--minimum-touch-target);
  }
  
  /* .quantity-selector,
  .add-to-cart-button {
    height: var(--height-buy-buttons);
  }*/

  .product__pickup-availabilities {
    width: 100%;
  }

  .pickup-availability__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pickup-availability__row {
    display: flex;
    gap: var(--padding-xs);
  }

  .pickup-availability__dialog-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pickup-availability__header-container {
    padding-block-end: var(--padding-2xl);
  }

  .pickup-location__wrapper {
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-2xl);
    border-top: 1px solid var(--color-border);
    gap: var(--padding-xs);
  }

  .pickup-location__address-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .pickup-location__dialog {
    padding: var(--padding-2xl);
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    border: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  .pickup-location__dialog:modal {
    max-height: 100dvh;
  }

  .pickup-location__text-sm {
    font-size: var(--font-size--sm);
    margin: 0;
  }

  .pickup-location__text-xs {
    font-size: var(--font-size--xs);
    margin: 0;
  }

  .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
  }

  .pickup-location__button {
    width: fit-content;
    color: var(--color-primary);
    font-size: var(--font-size--xs);
    font-family: var(--font-body--family);
    padding: 0;
    cursor: pointer;
    margin-block: var(--margin-xs);
  }

  .pickup-location__button:hover {
    color: var(--color-primary-hover);
  }

  .pickup-location__h4 {
    margin: 0;
  }

  .pickup-location__text-bold {
    font-size: var(--font-size--md);
    font-weight: 600;
    margin: 0;
  }

  .pickup-location__availability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-paragraph--family);
  }

  .pickup-location__address {
    font-style: normal;
  }

  .pickup-location__close-button {
    top: calc(var(--padding-2xl) - (var(--icon-size-xs) / 2));
    right: calc(var(--padding-2xl) - var(--icon-size-xs));
  }
/* END_BLOCK:buy-buttons-grid */

/* START_BLOCK:buy-buttons (INDEX:164) */
@media screen and (min-width: 1225px) {
    .product-details .buy-buttons-block{
      padding: 16px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .product-details .buy-buttons-block{
      padding: 12px;
    }
  }

  @media screen and (max-width: 749px) {
    .product-details .buy-buttons-block{
      padding: 8px;
    }
  } 

  .product-details .buy-buttons-block {
    width: 100%;
    background: #F3F8FE;
    border-radius: 4px;
  }
  
  .product-details .product-form-buttons {
    row-gap: 8px !important;
    column-gap: 8px !important;
    display: flex;
    flex-wrap: wrap;
  }

  .product-form-buttons > *:not(.quantity-selector) {
    flex: 1 1 185px;
    min-width: fit-content;
  }

  .product-form-buttons--stacked > *:not(.quantity-selector) {
    flex-basis: 51%; /* Force the buttons to be on separate rows */
  }

  .quantity-selector {
    flex-grow: 0;
  }

  .product-form-buttons button {
    width: 100%;
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  @media screen and (max-width: 749px) {
    .product-information__grid .product-form-buttons > span {
      flex-grow: 0 !important;
      flex-shrink: 0 !important;
      flex-basis: unset !important;
    }

    .product-details .add-to-cart-button {
      width: 184px;
      height: 64px;
    }
  } 


  .add-to-cart-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    gap: 10px;
    height: 64px;
    background: linear-gradient(48.59deg, #FF8C21 0%, #F5576E 100%);
    border-radius: 32px;
    text-transform: var(--button-text-case-primary);
  }

  .add-to-cart-button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .product-form-buttons .shopify-payment-button__button {
    width: 100%;
    min-height: var(--minimum-touch-target);
  }

  /*.quantity-selector,
  .add-to-cart-button {
    height: var(--height-buy-buttons);
  }*/

  .product__pickup-availabilities {
    width: 100%;
  }

  .pickup-availability__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pickup-availability__row {
    display: flex;
    gap: var(--padding-xs);
  }

  .pickup-availability__dialog-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pickup-availability__header-container {
    padding-block-end: var(--padding-2xl);
  }

  .pickup-location__wrapper {
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-2xl);
    border-top: 1px solid var(--color-border);
    gap: var(--padding-xs);
  }

  .pickup-location__address-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .pickup-location__dialog {
    padding: var(--padding-2xl);
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    border: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  .pickup-location__dialog:modal {
    max-height: 100dvh;
  }

  .pickup-location__text-sm {
    font-size: var(--font-size--sm);
    margin: 0;
  }

  .pickup-location__text-xs {
    font-size: var(--font-size--xs);
    margin: 0;
  }

  .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
  }

  .pickup-location__button {
    width: fit-content;
    color: var(--color-primary);
    font-size: var(--font-size--xs);
    font-family: var(--font-body--family);
    padding: 0;
    cursor: pointer;
    margin-block: var(--margin-xs);
  }

  .pickup-location__button:hover {
    color: var(--color-primary-hover);
  }

  .pickup-location__h4 {
    margin: 0;
  }

  .pickup-location__text-bold {
    font-size: var(--font-size--md);
    font-weight: 600;
    margin: 0;
  }

  .pickup-location__availability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-paragraph--family);
  }

  .pickup-location__address {
    font-style: normal;
  }

  .pickup-location__close-button {
    top: calc(var(--padding-2xl) - (var(--icon-size-xs) / 2));
    right: calc(var(--padding-2xl) - var(--icon-size-xs));
  }
/* END_BLOCK:buy-buttons */

/* START_BLOCK:contact-form-submit-button (INDEX:167) */
.submit-button {
    min-width: max-content;
  }
/* END_BLOCK:contact-form-submit-button */

/* START_BLOCK:email-signup (INDEX:172) */
@media screen and (min-width: 750px) {
    email-signup-block {
      display: flex;
      flex-direction: row;
    }
  }

  @media screen and (max-width: 749px) {
    email-signup-block {
      display: flex;
      flex-direction: column;
      row-gap: 16px;
    }
  }

  @media screen and (min-width: 396px) { 
    .email-signup__input-group-wrapper {
      flex-direction: row;
      height: 45px;
    }

    .name-signup__input {
      max-width: 145px;
      min-width: 44px;
    }
  }


  @media screen and (max-width: 395px) {
    .email-signup__input-group-wrapper {
      flex-direction: column;
    }

    .name-signup__input { 
      width: 100%;
    }
  }

  .email-signup-block {
    min-width: fit-content;

    @media screen and (max-width: 749px) {
      width: 100%;
      min-width: unset;
    }
  }

  .email-signup__heading {
    padding-block: var(--padding-sm);
  }

  .email-signup__form {
    display: flex;
    flex-direction: column;
  }



  .email-signup__input-group:not(:has(.email-signup__button--integrated)) {
    gap: var(--gap-xs);
  }

  .email-signup__input-group:not(:has(.email-signup__button--arrow)) {
    @media screen and (max-width: 749px) {
      grid-template-columns: 1fr;
    }
  }

  .email-signup__input {
    width: 100%;
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    border-style: solid;
    border-color: var(--color-input-border);
  }

  /*
  .email-signup__input.paragraph {
    color: var(--color-input-text);
    outline-color: var(--color-input-background);
  }
  */

  .email-signup__button {
    white-space: nowrap;
    padding: 0;

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  /*.email-signup__input,*/
  .email-signup__button--text {
    padding: var(--padding-lg) var(--padding-3xl);
  }

  .email-signup__input-group .email-signup__input--underline {
    --box-shadow-color: var(--color-input-border);
    --box-shadow-multiplier: 1;

    color: var(--color-input-text);
    background-color: transparent;
    padding: 12px 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 calc(var(--border-width) * var(--box-shadow-multiplier)) 0 var(--box-shadow-color);
    transition: box-shadow var(--animation-values);

    &:focus-visible {
      --box-shadow-multiplier: 1.75;
      --box-shadow-color: var(--color-input-text);

      outline: none;
    }
  }

  .email-signup__input::placeholder,
  .name-signup__input::placeholder {
    /*color: rgb(var(--color-input-text-rgb) / var(--opacity-70));*/
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #F3F8FE;
  }

  .email-signup__input-group .email-signup__input--none {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border: none;
  }

  .email-signup__input-group {
    --button-actual-width: var(--button-size);
  }

  .email-signup__input:has(+ .email-signup__button--arrow.email-signup__button--integrated) {
    padding-inline-end: calc(var(--button-size) + var(--padding-sm));

    @media screen and (max-width: 749px) {
      text-align: left;
    }
  }

  .email-signup__input:has(+ .email-signup__button--integrated.email-signup__button--text) {
    padding-inline-end: calc(var(--button-actual-width) + var(--padding-xs) + var(--margin-xs));

    @media screen and (max-width: 749px) {
      text-align: left;
    }
  }

  .email-signup__button-icon {
    fill: currentcolor;
    padding: 5px;

    @media screen and (max-width: 749px) {
      padding: 0;
      align-self: center;
      justify-self: center;
      width: var(--icon-size-lg);
      height: var(--icon-size-lg);
    }
  }

  .email-signup__button--arrow {
    aspect-ratio: 1;
    padding-inline: var(--padding-xs);

    &:not(.email-signup__button--integrated) {
      width: auto;
    }
  }

  .email-signup__button--integrated {
    --button-offset: var(--margin-xs);

    position: absolute;
    height: calc(100% - (var(--button-offset) * 2) - (var(--border-width) * 2));
    right: calc(var(--button-offset) + var(--border-width));
    top: calc(var(--button-offset) + var(--border-width));
    width: max-content;

    @media screen and (max-width: 749px) {
      width: fit-content;
    }

    &.email-signup__button--text {
      padding: 0 var(--padding-3xl);
    }

    &.email-signup__button--text.button-unstyled {
      padding: 0 var(--padding-xl);
    }

    &.button-unstyled {
      border-radius: var(--border-radius);
    }

    > .email-signup__button-icon {
      padding: 0;
    }
  }

  .email-signup__input--underline + .email-signup__button--integrated {
    --button-offset: calc(10% - var(--border-width));

    right: 0;

    &.email-signup__button--text.button-unstyled {
      padding: 0;
    }

    &.button-unstyled {
      border-radius: 0;
    }
  }

  /*.email-signup__button:not(.button-unstyled) {
    background-color: var(--button-background-color);
    color: var(--button-color);
    text-transform: var(--button-text-case-primary);
  }*/

  .email-signup__button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .email-signup__button.button-unstyled {
    background-color: transparent;
    color: var(--color-input-text);
  }

  .email-signup__button.button-unstyled:hover {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
    cursor: pointer;
  }

  .email-signup__message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .email-signup__message-text {
    margin: 0;
  }




  /* --- Custom New --- */
  .email-signup__input-group {
    /*position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;*/
    /* From */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    
    background-color: transparent;
  }



  .email-signup__input-group-wrapper {
    display: flex;

    align-items: flex-start;
    padding: 0px;
    gap: 8px;

    width: 100%;

  }



  .footer-newsletter-signup__input,
  .footer-newsletter-signup__input.email-signup__input,
  .footer-newsletter-signup__input.name-signup__input {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 24px;

    width: 100%;
    height: 45px;
    min-height: 44px;

    border: 2px solid #F3F8FE;
    border-radius: 40px;
    background-color: #43334B;


    /* - Font -*/
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #F3F8FE;
  }



  /* - Subscribe Button - */
  .email-signup-block button.email-signup__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 24px 2px;
    gap: 4px;

    width: 100% !important;
    height: 44px;

    background: #755C81;
    color: #755C81 !important;
    border-radius: 40px;
  }

  .email-signup-block button.email-signup__button > svg {
    width: 20px;
    height: 20px;
    fill: #A79BB3 !important;
  }

  .email-signup-block button.email-signup__button > span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #F3F8FE;
  }

  .email-signup__subheading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    color: #F3F8FE;
  }

  .email-signup__subheading strong {
    font-weight: 700 !important;
  }

  .email-signup__heading-wrapper {
    display: flex;
    flex-direction: column;
  }
/* END_BLOCK:email-signup */

/* START_BLOCK:filters (INDEX:174) */
.collection-wrapper {
    @media screen and (min-width: 750px) {
      --facets-vertical-col-width: 6;
    }

    @media screen and (min-width: 990px) {
      --facets-vertical-col-width: 5;
    }
  }

  .facets-block-wrapper {
    @media screen and (min-width: 750px) {
      margin: var(--facets-margin);
      grid-column: var(--grid-column--desktop);
    }
  }

  .facets-block-wrapper--vertical {
    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
    }
  }

  .facets-block-wrapper--vertical + .facets-toggle {
    @media screen and (max-width: 749px) {
      margin: 0;
    }
  }

  .facets-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    justify-content: flex-end;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) {
    justify-content: space-between;
  }

  dialog-component.facets-block-wrapper:not(:has(.facets--drawer[open])) {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .variant-option__swatch-wrapper {
    position: relative;
    overflow: visible;
    border-radius: var(--options-border-radius);
  }

  .variant-option--swatches-disabled .variant-option__swatch-wrapper {
    overflow: hidden;
  }

  .facets {
    --facets-form-horizontal-gap: 20px;
    --facets-horizontal-max-input-wrapper-height: 230px;
    --facets-upper-z-index: var(--layer-raised);
    --facets-open-z-index: var(--layer-heightened);
    --facets-sticky-z-index: var(--layer-sticky);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
    --facets-grid-panel-width: 300px;
    --facets-clear-padding: var(--padding-md);
    --facets-clear-shadow: 0 -4px 14px 0 rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
    --facets-input-label-color: rgb(var(--color-input-text-rgb) / var(--opacity-60));
    --facets-clear-all-min-width: 120px;
    --facets-see-results-min-width: 55%;
    --facets-mobile-gap: 22px;
    --facets-low-opacity: 10%;
    --facets-hover-opacity: 75%;

    top: auto;
    bottom: 0;
    height: var(--drawer-height);
    max-height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    box-shadow: none;
    padding-block: 0;

    &:not(.facets--drawer) {
      @media screen and (min-width: 750px) {
        padding-inline: var(--padding-inline-start) var(--padding-inline-end);
        width: 100%;
        max-width: 100%;
      }
    }
  }

  .facets--horizontal {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: var(--padding-block-start) var(--padding-block-end);
      display: flex;
      align-items: center;
      position: relative;
      z-index: var(--facets-upper-z-index);
      border: none;
      height: auto;
      top: initial;
      bottom: initial;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .facets--vertical {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: 0 var(--padding-block-end);
      display: block;
      position: static;
      top: auto;
      bottom: auto;
      height: auto;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .collection-wrapper:has(.collection-wrapper--full-width) .facets--vertical:not(.facets--drawer) {
    @media screen and (min-width: 750px) {
      padding-inline-start: max(var(--padding-sm), var(--padding-inline-start));
    }
  }

  .facets--drawer {
    border-radius: 0;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    padding-inline: 0;
  }

  .facets--drawer[open] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .facets.facets-controls-wrapper {
    @media screen and (min-width: 750px) {
      grid-column: column-1 / column-12;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
      gap: 0 var(--facets-form-horizontal-gap);
      padding-bottom: var(--padding-xs);
    }
  }

  .collection-wrapper:has(.product-grid-mobile--large) .facets-mobile-wrapper.facets-controls-wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets__inputs {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    width: 100%;
  }

  :is(.facets--drawer, .facets--vertical) .facets__inputs:not(:has(.show-more)) {
    padding-block-end: var(--padding-sm);
  }

  /* Facets - Form */
  .facets__form-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground-muted);
    width: 100%;
  }

  .facets--horizontal .facets__form-wrapper {
    @media screen and (min-width: 750px) {
      flex-direction: row;
      height: auto;
    }
  }

  .facets__form {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
  }

  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      flex-flow: row nowrap;
      height: auto;
    }
  }

  .facets:not(.facets--drawer) .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-md);
    }
  }

  .facets--horizontal .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      max-width: 60%;
      display: flex;
      flex-wrap: wrap;
      column-gap: var(--gap-xl);
      margin-inline-end: 0;
    }
  }

  /* Facets - Summary */
  .facets__summary {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;
    --icon-opacity: 0.5;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }

    font-size: var(--font-h4--size);
    display: flex;
    justify-content: space-between;

    &:hover {
      --icon-opacity: 1;
    }
  }

  .facets__filters-wrapper:hover .facets__summary,
  .facets__filters-wrapper:has(.facets__panel[open]) .facets__summary {
    opacity: var(--facets-hover-opacity);
  }

  .facets__filters-wrapper .facets__summary:hover,
  .facets__filters-wrapper .facets__panel[open] .facets__summary {
    opacity: 1;
  }

  .facets--horizontal .facets__summary {
    @media screen and (min-width: 750px) {
      font-size: var(--font-paragraph--size);
      justify-content: flex-start;
      height: var(--minimum-touch-target);
    }
  }

  .facets__summary .icon-caret {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    color: rgb(var(--color-foreground-rgb) / var(--icon-opacity));
    margin-block: var(--margin-2xs);
    transition: color var(--animation-speed) var(--animation-easing);
  }

  .facets--drawer .facets__summary .icon-caret {
    margin-inline-start: var(--margin-2xs);
  }

  /* Facets - Bubble */
  .facets__bubble {
    display: inline-flex;
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  /* Facets - Inputs */
  .facets__inputs-wrapper {
    margin-block: var(--padding-xs) var(--padding-xs);
  }

  .facets__inputs .show-more {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    margin-block-end: var(--padding-xl);
  }

  .facets:not(.facets--drawer) .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .facets--horizontal .facets__inputs .show-more {
    @media screen and (min-width: 750px) {
      display: contents;
    }
  }

  .facets--horizontal .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      max-height: var(--facets-horizontal-max-input-wrapper-height);
      scrollbar-width: none;
      -ms-overflow-style: none;
      overflow-x: auto;
      padding: var(--padding-md);
      margin-block: 0;
    }
  }

  .facets--vertical .facets__inputs:has(.show-more) .facets__inputs-wrapper {
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-sm);
    margin-block: calc(var(--padding-sm) * -1);
    margin-inline: calc(var(--padding-sm) * -1);
  }

  @media screen and (max-width: 749px) {
    .facets__inputs:has(.show-more) .facets__inputs-wrapper {
      padding-block: var(--padding-sm);
      padding-inline: var(--padding-sm);
      margin-block: calc(var(--padding-sm) * -1);
      margin-inline: calc(var(--padding-sm) * -1);
    }
  }

  .facets__inputs-wrapper:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper .facets__inputs-list {
    display: flex;
    gap: var(--facets-mobile-gap);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches {
      gap: var(--gap-sm);
    }

    .facets--horizontal
      .facets__inputs-wrapper
      .facets__inputs-list--swatches:not(.facets__inputs-list--swatches-grid) {
      display: grid;
      grid-template-columns: repeat(var(--swatch-columns, 4), 1fr);
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches {
    --facets-mobile-gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--grid {
    --min-column-width: 20%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--min-column-width), 1fr));
    gap: var(--gap-sm);

    @media screen and (min-width: 750px) {
      --min-column-width: 50px;
    }
  }

  .facets-block-wrapper:not(.facets-block-wrapper--vertical) .facets__inputs-list--grid {
    @media screen and (min-width: 750px) {
      width: var(--facets-grid-panel-width);
    }
  }

  .facets__inputs-wrapper--row:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper--row .facets__inputs-list {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .facets__inputs .show-more__button {
    --show-more-icon-size: 22px;
    --show-more-gap: 8px;

    gap: var(--show-more-gap);

    @media screen and (min-width: 750px) {
      --show-more-icon-size: 16px;
      --show-more-gap: 6px;
    }
  }

  .facets__inputs .show-more__button .icon-plus {
    width: var(--show-more-icon-size);
    height: var(--show-more-icon-size);

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

  /* Facets - Panel */
  .facets__panel {
    padding: 0 var(--drawer-padding);
  }

  .facets:not(.facets--drawer) .facets__panel,
  .facets-controls-wrapper .facets__panel {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets__panel {
    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  .facets-mobile-wrapper .facets__panel-content {
    border-radius: var(--style-border-radius-popover);
  }

  .facets-mobile-wrapper {
    --facets-upper-z-index: var(--layer-raised);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
  }

  .facets--horizontal .facets__panel-content,
  .sorting-filter__options {
    @media screen and (min-width: 750px) {
      border-radius: var(--style-border-radius-popover);
      position: absolute;
      top: 100%;
      width: max-content;
      min-width: var(--facets-panel-min-width);
      max-width: var(--facets-panel-width);
      max-height: var(--facets-panel-height);
      z-index: var(--facets-upper-z-index);
      box-shadow: var(--shadow-popover);
      border: var(--style-border-popover);
      background-color: var(--color-background);
      overflow-y: hidden;
      gap: 0;
    }
  }

  :is(.facets--drawer, .facets--vertical) :is(.facets__item, .sorting-filter)::before {
    content: '';
    display: block;
    height: 0;
    width: calc(100% - var(--drawer-padding) * 2);
    border-top: var(--style-border-width) solid var(--color-border);
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .facets:not(.facets--drawer) :is(.facets__item, .sorting-filter)::before {
      width: 100%;
    }

    .facets--horizontal .facets__item:not(:first-of-type)::before,
    .facets--horizontal .sorting-filter::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__item:not(:first-of-type)::before,
    .facets--vertical .sorting-filter::before {
      content: '';
    }
  }

  /* Facets - Text */
  .facets__label,
  .facets__clear-all,
  .clear-filter {
    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  .facets__label,
  .products-count-wrapper {
    text-transform: var(--facet-label-transform);
  }

  .clear-filter {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  /* Facets - Label */
  .facets__label {
    color: var(--color-foreground);
    cursor: pointer;

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

  /* Products count */
  .products-count-wrapper {
    display: none;
  }

  .facets--horizontal .products-count-wrapper {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-left: auto;
      flex-shrink: 0;
      align-items: center;
      height: var(--minimum-touch-target);
    }
  }

  /* Mobile specific components */
  .facets__title-wrapper {
    background-color: var(--color-background);
    color: var(--color-foreground);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-xs);
    padding-inline-start: var(--drawer-padding);
    padding-inline-end: var(--padding-2xs);
    z-index: var(--facets-sticky-z-index);
  }

  :is(.facets--horizontal, .facets--vertical) .facets__title-wrapper {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-drawer__title {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets-drawer__close {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    cursor: pointer;
  }

  /* Status */
  .facets__status:not(:empty) {
    width: max-content;
    display: flex;
    margin-inline-start: auto;
    font-weight: 500;
    color: var(--color-foreground);
  }

  .facets__panel[open] .facets__status {
    display: none;
  }

  .facets--filters-title {
    margin-block-end: 0;
    color: var(--color-foreground);
    height: fit-content;

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

  .facets--horizontal .facets__panel .facets__status:has(:not(:empty)) {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-inline-start: var(--margin-xs);
      margin-inline-end: var(--margin-xs);
    }
  }

  /* Horizontal filter style */
  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      gap: 0 var(--facets-form-horizontal-gap);
    }
  }

  .collection-wrapper:has(> .facets--horizontal) .facets__panel[open] {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-open-z-index);
    }
  }
/* END_BLOCK:filters */

/* START_BLOCK:footer-policy-list (INDEX:177) */
.policy-list-trigger {
    anchor-name: --terms-policies-trigger;
    cursor: pointer;
    font-size: var(--font-size, 0.75rem);
    text-transform: var(--text-transform, none);
  }

  .policy_list {
    li {
      border-radius: calc(var(--style-border-radius-popover) - 8px);

      a {
        color: var(--color-foreground);
        display: inline-block;
        padding: 8px;
        text-align: start;
        width: 100%;
        outline-color: #0000;
        font-size: var(--font-size, 0.75rem);
        text-transform: var(--text-transform, none);
      }

      &:is(:hover, :focus-within) {
        background: rgb(var(--color-foreground-rgb) / 0.15);
      }
    }
  }

  .terms-policies-popover {
    position-anchor: --terms-policies-trigger;
    inset: unset;
    bottom: calc(anchor(top) + 1rem);
    left: anchor(left);
    border-radius: var(--style-border-radius-popover);
    background: linear-gradient(var(--color-background) 0 100%),
      linear-gradient(rgb(var(--color-background-rgb) / 0.15) 0 100%);
    background-clip: padding-box, border-box;
    border: 1px solid #0000;
    box-shadow: var(--shadow-popover);
    padding: 8px;
    margin: 0;
    opacity: 0;
    scale: 0.94;
    translate: 0 6px;
    transform-origin: 6ch 100%;
  }

  .terms-policies-popover.\:popover-open,
  .terms-policies-popover:popover-open {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }

  @media screen and (max-width: 750px) {
    .terms-policies-popover {
      left: anchor(center);
      transform: translate(-50%, 0);
      transform-origin: 0% 100%;
    }
  }

  @supports not (position-anchor: --account-button-trigger) {
    .terms-policies-popover {
      bottom: unset;
      top: calc(var(--anchor-top) * 1px);
      left: calc(var(--anchor-left) * 1px);
      transform: translate(0, calc(-100% - 1.25rem));
    }
    @media screen and (max-width: 750px) {
      .terms-policies-popover {
        left: calc((var(--anchor-left) + (var(--anchor-width) / 2)) * 1px);
        transform: translate(-50%, calc(-100% - 1.25rem));
      }
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .terms-policies-popover {
      transition-property: display, overlay, opacity, scale, translate;
      transition-behavior: allow-discrete;
      transition-duration: 0.3s;
      transition-timing-function: var(--ease-out-quad);
    }
    @starting-style {
      .terms-policies-popover.\:popover-open,
      .terms-policies-popover:popover-open {
        opacity: 0.7;
        translate: 0 6px;
        scale: 0.94;
      }
    }
  }
/* END_BLOCK:footer-policy-list */

/* START_BLOCK:icon-button (INDEX:181) */
.shopify-block:has(.button-with-icon) {
    width: 100%;
    .button-with-icon {
      display: flex;
      justify-content: end;
      @media screen and (max-width:749px){justify-content: start;}
      a .info-bar__text{
        font-weight: 600;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: 0;
        color: #F3F8FE;
      }
    }
}
/* END_BLOCK:icon-button */

/* START_BLOCK:icon-text-block (INDEX:182) */
.icon-text-block img {
        width: 24px;
    }
    .icon-text-block{
        display: flex;
        gap:8px; 
        background: #F3F8FE;
        padding: 12px 16px;
        border-radius: 16px; 
    }
    .icon-text-item {
        display: flex;
        gap:4px;
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0;
        color: var(--Trust-100, #755C81);
    }
/* END_BLOCK:icon-text-block */

/* START_BLOCK:icon (INDEX:183) */
.icon-block {
    display: flex;
    fill: currentcolor;
    flex-shrink: 0;
  }

  .icon-block__media {
    height: auto;
  }
/* END_BLOCK:icon */

/* START_BLOCK:image (INDEX:184) */
.placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  placeholder-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: var(--ratio);
  }

  .image-block {
    display: flex;

    /* When the image is nested in a group, section, etc, respect the parent's horizontal alignment */
    justify-content: var(--horizontal-alignment, 'inline-start');
  }

  .image-block--height-fill .image-block__image {
    height: 100%;
  }

  .image-block__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }
/* END_BLOCK:image */

/* START_BLOCK:info-bar (INDEX:185) */
/* Info Bar Section */
.info-bar {
  width: 100%;
  box-sizing: border-box;
  padding: var(--info-bar-padding-vertical, 12px) var(--info-bar-padding-horizontal, 20px);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.info-bar__inner {
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  @media screen and (min-width:750px) and (max-width:1200px){
    flex-wrap: wrap;
    gap: 8px
  }

}

/* Left / Right groups (dynamic blocks) */
.info-bar__group {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
}
div.shopify-block:has(.info-bar) {
    width: 100%;
}
/* Each item */
.info-bar__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
}
.info-bar__item:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.06); */
}

/* Icon */
.info-bar__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-block;
}
.info-bar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.info-bar__text {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  white-space: normal;
}

/* Center static rating block */
.info-bar__center {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 8px;
  padding: 0px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  @media screen and (min-width:750px) and (max-width:1200px){
    order: -1;
    width: 100%;
  }
  @media screen  and (max-width:749px){
    margin: 0px;
    order: -1;
  }
}
/*
.info-bar__center .cusrev-logo {
  display:inline-block;
  font-weight:700;
  color: #222;
  margin-right: 8px;
}*/

@media screen  and (max-width:749px){ 
  .info-bar__center .cusrev-logo {
    margin-left: 4px;
  }
}

/* stars */
.info-bar__stars {
  display:flex;
  gap:4px;
  align-items:center;
  font-size:13px;
  color:#f6b21a;
}
.info-bar {
    width: 100%;
    background: #fff;
    border-radius: 16px;
}
.info-bar__text {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
     @media screen and (max-width:749px){font-size: 14px; }
}
.info-bar__item-link span.info-bar__text {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0px;
    text-underline-offset: 4px !important;
    color:#755C81;
}
/* Responsive behavior */
@media (max-width: 900px) {
  .info-bar__inner {
    gap: 8px;    
  }
  .info-bar__group { justify-content: center; flex-wrap: wrap; }
}
@media screen and (max-width:749px){
  .info-bar__group.info-bar__group--left.first-blck {
    order: 2;
  }
  .info-bar__inner {
    flex-direction: column;
    align-items: start;
  }
  .info-bar {
    padding: 8px 12px;
  }
}





@media screen and (min-width: 1225px) {
  .cusrev-logo > img {
    height: 24px;
  }

  .info-bar__stars-star-rating > svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 750px) and (max-width: 1224px) {
  .cusrev-logo > img {
    height: 20px;
  }

  .info-bar__stars-star-rating > svg {
    width: 20px;
    height: 20px;
  }

}

@media screen and (max-width: 749px) {
  .cusrev-logo > img {
    height: 16px;
  }

  .info-bar__stars-star-rating > svg {
    width: 16px;
    height: 16px;
  }
}

.info-bar__stars-star-rating {
  display: flex;
  flex-direction: row;
}



@media screen and (min-width: 1225px) {
  .info-bar__stars-rating-text {
    height: 24px;
    font-size: 16px;
    line-height: 150%;
  }
}

@media screen and (min-width: 750px) and (max-width: 1224px) {
  .info-bar__stars-rating-text { 
    height: 21px;
    font-size: 14px;
    line-height: 150%;
  }
}

@media screen and (max-width: 749px) {
  .info-bar__stars-rating-text {
    height: 17px;
    font-size: 14px;
    line-height: 120%;
  }
}

.info-bar__stars-rating-text { 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  color: #43334B;
  display: flex;
  align-items: center;
}
/* END_BLOCK:info-bar */

/* START_BLOCK:info-bar2 (INDEX:186) */
/* Info Bar Section */
.info-bar {
  width: 100%;
  box-sizing: border-box;
  padding: var(--info-bar-padding-vertical, 12px) var(--info-bar-padding-horizontal, 20px);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.info-bar__inner {
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  @media screen and (min-width:750px) and (max-width:1200px){
    flex-wrap: wrap;
    gap: 8px
  }

}

/* Left / Right groups (dynamic blocks) */
.info-bar__group {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
}
div.shopify-block:has(.info-bar) {
    width: 100%;
}
/* Each item */
.info-bar__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: transform .12s ease, box-shadow .12s ease;
}
.info-bar__item:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 8px 24px rgba(0,0,0,0.06); */
}

/* Icon */
.info-bar__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-block;
}
.info-bar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.info-bar__text {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}

/* Center static rating block */
.info-bar__center {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 8px;
  padding: 0px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  @media screen and (min-width:750px) and (max-width:1200px){
    order: -1;
    width: 100%;
  }
  @media screen  and (max-width:749px){
    margin: 0px;
    order: -1;
  }
}
.info-bar__center .cusrev-logo {
  display:inline-block;
  font-weight:700;
  color: #222;
  margin-right: 8px;
}

@media screen  and (max-width:749px){ 
  .info-bar__center .cusrev-logo {
    margin-left: 2px;
  }
}

/* stars */
.info-bar__stars {
  display:flex;
  gap:4px;
  align-items:center;
  font-size:13px;
  color:#f6b21a;
}
.info-bar {
    width: 100%;
    background: #fff;
    border-radius: 16px;
}
.info-bar__text {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
     @media screen and (max-width:749px){font-size: 14px; }
}
.info-bar__item-link span.info-bar__text {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0px;
    text-underline-offset: 4px !important;
    color:#755C81;
}
/* Responsive behavior */
@media (max-width: 900px) {
  .info-bar__inner {
    gap: 8px;    
  }
  .info-bar__group { justify-content: center; flex-wrap: wrap; }
}
@media screen and (max-width:749px){
  .info-bar__group.info-bar__group--left.first-blck {
    order: 2;
  }
  .info-bar__inner {
    flex-direction: column;
    align-items: start;
  }
  .info-bar {
    padding: 8px 12px;
  }
}
/* END_BLOCK:info-bar2 */

/* START_BLOCK:limited-offer (INDEX:191) */
.limited-offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 4px;
    width: 100%;
    background: #ffa41c;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .limited-offer__title,
  .limited-offer__timer,
  .limited-offer__description,
  .limited-offer__coupon {
    font-family: 'Inter';
    font-style: normal;
    line-height: 150%;
    color: #43334b;
    font-size: 12px;
  }

  .limited-offer__title {
    font-weight: 600;
    margin: 0;
  }

  .limited-offer__countdown {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .limited-offer__timer {
    font-weight: 500;
  }

  .limited-offer__description {
    font-weight: 500;
    margin: 0;
  }

  .limited-offer__coupon {
    background: none;
    border: none;
    padding: 0;
    font-weight: 500;
    text-decoration: underline;
    color: #43334b;
    cursor: pointer;
  }

  .limited-offer__coupon:hover {
    text-decoration: none;
  }

  @media (min-width: 1225px) {
    .limited-offer__title,
    .limited-offer__timer,
    .limited-offer__description,
    .limited-offer__coupon {
      font-size: 14px;
    }
  }
/* END_BLOCK:limited-offer */

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

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

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

  .logo-block__image {
    object-fit: contain;
    width: 100%;
  }
/* END_BLOCK:logo */

/* START_BLOCK:page (INDEX:195) */
.page-block {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .page-title {
    margin-bottom: var(--margin-xl);
  }

  .placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  .page-placeholder {
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:page */

/* START_BLOCK:payment-icons (INDEX:196) */
.payment-icons {
    width: 100%;
  }

  .payment-icons__list {
    display: flex;
    align-items: center;
    justify-content: var(--alignment);
    flex-wrap: wrap;
    gap: var(--icon-gap);
    margin: 0;
    padding: 0;
  }

  .payment-icons__item {
    display: flex;
    align-items: center;
  }
/* END_BLOCK:payment-icons */

/* START_BLOCK:popup-link (INDEX:199) */
.popup-link__button svg {
    display: inline-block;
    position: relative;
    top: var(--margin-2xs);
  }

  .popup-link__content {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover);
    background-color: var(--color-background);
    padding: var(--padding-4xl) var(--padding-xl) var(--padding-xl);
    max-width: var(--normal-content-width);
    max-height: var(--modal-max-height);

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

  .popup-link__content[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content--drawer {
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
  }

  /* Needed to ensure the drawer is full height */
  .popup-link__content--drawer:modal {
    max-height: 100dvh;
  }

  .popup-link__close {
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    opacity: 0.8;
    animation: none;
  }
/* END_BLOCK:popup-link */

/* START_BLOCK:price (INDEX:200) */
.tax-note:empty {
    display: none;
  }

  form.payment-terms {
    padding-top: 0.5em;
  }

  .installments:not(:has(shopify-payment-terms)) {
    display: none;
  }
/* END_BLOCK:price */

/* START_BLOCK:product-configurator-e (INDEX:202) */
.variant-e .product-configurator-e {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .variant-e .product-configurator-e product-form-component {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .variant-e .product-configurator-e .product-configurator-e__addons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f3f8fe;
    border-radius: 4px;
  }

  .variant-e .product-configurator-e .product-configurator-e__addons-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .variant-e .product-configurator-e .product-configurator-e__addons-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 150%;
    color: #43334b;
  }

  .variant-e .product-configurator-e .additional-tests__item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-checkbox {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    cursor: pointer;
    border: 1.7px solid #43334b;
    border-radius: 2px;
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position: 50% 52%;
    background-size: 12px 10px;
    flex: 0 0 20px;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-checkbox:checked {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%2343334B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    position: relative;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 120%;
    color: #43334b;
    cursor: pointer;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-info-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #43334b;
  }

  /* ---------- Addon modal (lifted from variant-c/d for parity) ---------- */
  .addon-modal {
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100dvh - 64px);
    padding: 0;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: #43334b;
    box-shadow: 0 20px 60px rgba(67, 51, 75, 0.25);
    overscroll-behavior: contain;
    overflow: hidden;
    flex-direction: column;
    font-family: 'Inter', sans-serif;

    &:not([open]) {
      display: none;
    }

    &[open] {
      display: flex;
    }

    &::backdrop {
      background: rgba(67, 51, 75, 0.5);
      backdrop-filter: blur(2px);
    }

    .addon-modal__inner {
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px;
    }

    .addon-modal__header {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .addon-modal__icon {
      flex: 0 0 32px;
      width: 32px;
      height: 32px;
      object-fit: contain;
      border-radius: 6px;
    }

    .addon-modal__title {
      flex: 1 1 auto;
      font-weight: 700;
      font-size: 18px;
      line-height: 130%;
      color: #43334b;
      min-width: 0;
    }

    .addon-modal__close {
      flex: 0 0 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      padding: 0;
      border: none;
      background: transparent;
      color: #755c81;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .addon-modal__close:hover {
      background: #f3f8fe;
      color: #43334b;
    }

    .addon-modal__close:focus-visible {
      outline: 2px solid #43334b;
      outline-offset: 2px;
    }

    .addon-modal__body {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
      color: #43334b;
      white-space: pre-wrap;
    }

    .addon-modal__body > * {
      margin: 0 0 8px;
    }

    .addon-modal__body > *:last-child {
      margin-bottom: 0;
    }
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 140%;
    color: var(--color-purple);
    white-space: nowrap;
  }

  .variant-e .product-configurator-e .product-configurator-e__addon-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 140%;
    color: var(--color-purple-light);
    cursor: pointer;
  }

  .variant-e .product-configurator-e .product-configurator-e__cta-row {
    background: var(--card-bg);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    align-items: stretch;
    margin-top: 0.25rem;
    border-radius: 4px 4px 0 0;
    padding: 0.5rem;

    .quantity-selector {
      height: 3rem !important;
    }
  }

  .variant-e .product-configurator-e .add-to-cart-button {
    width: 100%;
    background: linear-gradient(10deg, #ff8c21 0%, #f5576e 100%);
    color: #fff;
    border-radius: 999px;
    padding: 0 24px;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    border: 0;
    cursor: pointer;
  }

  .variant-e .product-configurator-e .add-to-cart-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .variant-e .product-configurator-e .product-configurator-e__trust {
    background: var(--card-bg);
    padding: 0 0.5rem 0.5rem 0.5rem;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .variant-e .product-configurator-e .product-configurator-e__trust-note {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--color-purple-light);

    .svg-wrapper svg {
      height: 0.75rem;
      width: 0.75rem;
      * {
        fill: var(--color-purple-light);
      }
    }
  }

  .variant-e .product-configurator-e .product-configurator-e__payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0.375rem;
    width: 100%;
  }

  .variant-e .product-configurator-e .product-configurator-e__trust-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .variant-e .product-configurator-e .product-configurator-e__trust-links .guarantee-button,
  .variant-e .product-configurator-e .product-configurator-e__trust-links .ebook-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: #43334b;
    text-decoration: underline;
    .description_guarantee-button-text {
      font-size: 0.75rem;
      font-weight: 500;
    }
  }

  @media screen and (min-width: 750px) {
    .variant-e .product-configurator-e .product-configurator-e__trust {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: initial;
    }

    .variant-e .product-configurator-e .product-configurator-e__trust-note {
      flex: 1 1 calc(40% - 0.5rem);
      justify-content: flex-end;
    }

    .variant-e .product-configurator-e .product-configurator-e__payment-icons {
      flex: 1 1 calc(60% - 0.5rem);
      justify-content: flex-start;
      width: auto;
    }

    .variant-e .product-configurator-e .product-configurator-e__trust-links {
      flex: 1 1 100%;
      flex-direction: row;
      justify-content: center;
      width: auto;
      gap: 1rem;
    }

    .variant-e .product-configurator-e .product-configurator-e__addon-title {
      font-size: 1.0625rem;
    }
  }
/* END_BLOCK:product-configurator-e */

/* START_BLOCK:product-configurator (INDEX:203) */
.product-configurator {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: #43334b;

    .product-configurator__section-title {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 150%;
      margin: 0;
      padding: 0;
    }

    .product-configurator__tier {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 0;
      padding: 12px;
      background: #f3f8fe;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
    }

    .product-configurator__optional {
      display: flex;
      width: 100%;
      flex-direction: column;
      gap: 8px;
      padding: 12px;
      background: #f3f8fe;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      margin-bottom: 4px;
    }

    .product-configurator__optional-grid {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .product-configurator__summary {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 12px;
      background: #f3f8fe;
      border-radius: 4px;
    }

    .product-configurator__summary-row:not([hidden]) {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-weight: 500;
      font-size: 1rem;
      line-height: 140%;
    }

    .product-configurator__summary-row--total {
      border-top: 1px solid #bad1f2;
      padding-block-start: 8px;
      font-weight: 600;
      font-size: 1rem;
      [data-cfg='total'] {
        font-family: 'Newsreader', serif;
        font-weight: 700;
        font-size: 24px;
      }
    }

    .product-configurator__summary-tax {
      align-self: flex-end;
      font-weight: 500;
      font-size: 11px;
      color: #755c81;
    }

    .product-configurator__savings:not([hidden]) {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 8px;
      background: #def1d0;
      border-radius: 4px;
      font-weight: 500;
      font-size: 14px;
      color: var(--color-primary);
    }

    .product-configurator__savings-icon {
      display: inline-flex;
    }

    .product-configurator__cta-row {
      display: flex;
      gap: 8px;
      align-items: stretch;
      background: #f3f8fe;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      padding: 8px;
      margin-top: 4px;

      .quantity-selector {
        height: 47px !important;
        flex: 0 0 auto;
      }

      .add-to-cart-button {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 47px;
        padding: 0 24px;
        background: #43334b;
        color: #fff;
        border-radius: 32px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;

        &[disabled] {
          opacity: 0.6;
          cursor: not-allowed;
        }

        .svg-wrapper {
          display: inline-flex;
          align-items: center;
          color: #fff;
        }
      }
    }

    .product-configurator__trust {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
      background: #f3f8fe;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
    }

    .product-configurator__trust-note {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
      font-size: 12px;
      color: var(--color-purple-light);

      svg {
        width: 13px;
        height: 13px;
      }
    }

    .product-configurator__payment-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2px;
      width: 100%;
      padding: 0.5rem;

      @media (min-width: 400px) {
        gap: 8px;
      }
    }

    .product-configurator__trust-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      gap: 0.15rem;
      padding-bottom: 8px;
      button {
        appearance: none;
        border: none;
        display: flex;
        align-items: center;
        background: none;
        text-decoration: underline;
        gap: 4px;
        .description_guarantee-button-text {
          font-weight: 500;
          font-size: 0.875rem;
          color: var(--color-purple);
        }
      }
    }
  }
  .tier-tile__wrapper {
    display: grid;
    gap: 0.25rem;
  }
  .tier-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    border: 1.5px solid #bad1f2;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.15s ease;

    &:hover {
      border-color: #d1e3fc;
    }

    .tier-tile__radio {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .tier-tile__indicator {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border: 2px solid #43334b;
      border-radius: 50%;
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .tier-tile__body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .tier-tile__title {
      font-weight: 600;
      font-size: 1rem;
      line-height: 140%;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      color: var(--color-purple);
    }

    .tier-tile__subtitle {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 130%;
      color: #755c81;
    }

    .tier-tile__badge {
      align-self: flex-start;
      padding: 3px 8px;
      border-radius: 999px;
      background: linear-gradient(48.59deg, #ff8c21 0%, #f5576e 100%);
      color: #fff;
      font-weight: 700;
      font-size: 11px;
      line-height: 130%;
      letter-spacing: 0.02em;
    }

    .tier-tile__price-stack {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
      flex: 0 0 auto;
    }

    .tier-tile__price {
      font-weight: 700;
      font-size: 16px;
      line-height: 120%;
    }

    .tier-tile__price-compare {
      font-weight: 500;
      font-size: 12px;
      line-height: 120%;
      text-decoration: line-through;
    }
  }

  .tier-tile.tier-tile--active {
    background: #d1e3fc;
    outline: 2px solid #95b3eb;
    outline-offset: -2px;

    .tier-tile__indicator {
      border-color: #51b92c;
      background: #51b92c
        url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat 50% 52% / 12px 10px;
    }
  }

  /* ---------- Optional tile ---------- */
  .optional-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    border: 1.5px solid #bad1f2;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s ease;

    &:hover {
      border-color: #d1e3fc;
    }

    .optional-tile__checkbox {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .optional-tile__indicator {
      order: 2;
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border: 1.7px solid #43334b;
      border-radius: 4px;
      background: #fff;
    }

    .optional-tile__body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .optional-tile__head {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .optional-tile__title {
      font-weight: 600;
      font-size: 1rem;
      line-height: 140%;
      color: var(--color-purple);
    }

    .optional-tile__info {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      padding: 0;
      border: none;
      background-color: transparent;
      color: #43334b;
      cursor: pointer;
      border-radius: 50%;
      transition: background-color 0.15s ease;
    }

    .optional-tile__info:hover {
      background: #e9e3ef;
    }

    .optional-tile__info:focus-visible {
      outline: 2px solid #43334b;
      outline-offset: 2px;
    }

    .optional-tile__subtitle {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 130%;
      color: #755c81;
    }

    .optional-tile__price {
      flex: 0 0 auto;
      font-weight: 700;
      font-size: 14px;
      line-height: 120%;
    }

    .optional-tile__included {
      display: none;
      flex: 0 0 auto;
      align-items: center;
      gap: 4px;
      font-weight: 600;
      font-size: 12px;
      line-height: 120%;
      color: #51b92c;
    }
  }

  .optional-tile.optional-tile--in-kombi {
    background: rgba(186, 209, 242, 0.18);
    border-style: dashed;
    border-color: #bad1f2;

    &:hover {
      border-color: #bad1f2;
    }

    .optional-tile__title,
    .optional-tile__subtitle {
      color: #755c81;
    }

    .optional-tile__price,
    .optional-tile__indicator {
      display: none;
    }

    .optional-tile__included {
      display: inline-flex;
    }
  }

  .optional-tile.optional-tile--active {
    background: #d1e3fc;
    outline: 2px solid #95b3eb;
    outline-offset: -2px;

    .optional-tile__indicator {
      background: #fff
        url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%2343334B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat 50% 52% / 12px 10px;
    }
  }

  /* ---------- Kombi tile ---------- */
  .kombi-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    background: transparent;
    border: 1.5px solid #bad1f2;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;

    &:hover {
      border-color: #d1e3fc;
    }

    .kombi-tile__body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .kombi-tile__title {
      font-weight: 700;
      font-size: 14px;
      line-height: 120%;
    }

    .kombi-tile__subtitle {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 130%;
      color: #755c81;
    }

    .kombi-tile__price-stack {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
      flex: 0 0 auto;
    }

    .kombi-tile__price {
      font-weight: 700;
      font-size: 14px;
      line-height: 120%;
    }

    .kombi-tile__price-compare {
      font-weight: 500;
      font-size: 12px;
      line-height: 120%;
      color: #755c81;
      text-decoration: line-through;
    }

    .kombi-tile__indicator {
      order: 2;
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border: 1.7px solid #43334b;
      border-radius: 4px;
      background: #fff;
    }
  }

  .kombi-tile.kombi-tile--active {
    /* border-color: #51b92c;
    outline: 2px solid #51b92c; */
    /* background: #fafdf7; */
    background: #d1e3fc;
    outline: 2px solid #95b3eb;
    outline-offset: -2px;

    .kombi-tile__indicator {
      border-color: #51b92c;
      background: #51b92c
        url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat 50% 52% / 12px 10px;
    }
  }

  /* ---------- Hidden mirror checkbox ---------- */
  .additional-test__checkbox--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    pointer-events: none;
  }

  /* ---------- Addon modal ---------- */
  .addon-modal {
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100dvh - 64px);
    padding: 0;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: #43334b;
    box-shadow: 0 20px 60px rgba(67, 51, 75, 0.25);
    overscroll-behavior: contain;
    font-family: 'Inter', sans-serif;

    &::backdrop {
      background: rgba(67, 51, 75, 0.5);
      backdrop-filter: blur(2px);
    }

    .addon-modal__inner {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px;
    }

    .addon-modal__header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .addon-modal__icon {
      flex: 0 0 32px;
      width: 32px;
      height: 32px;
      object-fit: contain;
      border-radius: 6px;
    }

    .addon-modal__title {
      flex: 1 1 auto;
      font-weight: 700;
      font-size: 18px;
      line-height: 130%;
      color: #43334b;
      min-width: 0;
    }

    .addon-modal__close {
      flex: 0 0 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      padding: 0;
      border: none;
      background: transparent;
      color: #755c81;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .addon-modal__close:hover {
      background: #f3f8fe;
      color: #43334b;
    }

    .addon-modal__close:focus-visible {
      outline: 2px solid #43334b;
      outline-offset: 2px;
    }

    .addon-modal__body {
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
      color: #43334b;
      white-space: pre-wrap;
    }

    .addon-modal__body > * {
      margin: 0 0 8px;
    }

    .addon-modal__body > *:last-child {
      margin-bottom: 0;
    }
  }

  :is(.variant-c, .variant-d, .variant-e) .product-information.section--page-width {
    --page-margin: 4px;
  }

  @media (min-width: 750px) {
    :is(.variant-c, .variant-d, .variant-e) .product-information.section--page-width {
      --page-margin: 16px;
    }
    .product-configurator {
      .tier-tile__wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        .tier-tile {
          padding: 0.5rem 0.5rem;
          .tier-tile__title {
            white-space: nowrap;
          }
        }
      }

      .product-configurator__optional-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;

        .optional-tile,
        .kombi-tile {
          padding: 0.5rem 0.5rem;
        }
      }

      .product-configurator__trust {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;

        .product-configurator__trust-note {
          flex: 1 1 calc(40% - 0.5rem);
          justify-content: flex-end;
        }

        .product-configurator__payment-icons {
          flex: 1 1 calc(50% - 0.5rem);
          gap: 0.25rem;
          justify-content: flex-start;
        }
        .product-configurator__trust-links {
          flex-direction: row;
          justify-content: center;
        }
      }
    }
  }

  :is(.variant-c, .variant-d, .variant-e) .product-configurator {
    padding: 0;
  }

  :is(.variant-d, .variant-e) {
    .product-configurator {
      .tier-tile.tier-tile--active,
      .kombi-tile.kombi-tile--active,
      .optional-tile.optional-tile--active {
        background: #fafdf7;
        outline: #51b92c 2px solid;
        border-color: #51b92c;
      }
    }
  }
/* END_BLOCK:product-configurator */

/* START_BLOCK:product-custom-property (INDEX:204) */
product-custom-property-component {
    display: block;
    width: 100%;
  }

  product-custom-property-component .__heading {
    margin-inline: 0;
    margin-block: 0 var(--padding-sm);
  }

  product-custom-property-component .__heading:has(+ .__description) {
    margin-block-end: var(--padding-2xs);
  }

  product-custom-property-component .__description {
    font-size: min(0.85em, var(--font-paragraph--size));
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-inline: 0;
    margin-block: 0 var(--padding-md);
  }

  product-custom-property-component .__field {
    position: relative;
  }

  product-custom-property-component .__input-wrapper {
    position: relative;
  }

  product-custom-property-component input,
  product-custom-property-component textarea {
    width: 100%;
    /* stylelint-disable-next-line declaration-no-important */
    color: var(--color-input-text) !important;
  }

  /* Add padding for inputs with counter inside */
  product-custom-property-component .__input-wrapper input {
    padding-bottom: calc(var(--padding-sm) * 3);
  }

  product-custom-property-component .__input-wrapper textarea {
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  product-custom-property-component textarea {
    min-height: 80px;
  }

  @supports (resize: vertical) {
    @media (hover: hover) and (pointer: fine) {
      product-custom-property-component textarea {
        resize: vertical; /* stylelint-disable-line */
      }
    }
  }

  product-custom-property-component .__character-label {
    position: absolute;
    left: var(--input-padding-x);
    bottom: var(--padding-sm);
    pointer-events: none;
  }

  product-custom-property-component .__character-count {
    font-style: italic;
    /* stylelint-disable-next-line declaration-no-important */
    color: var(--color-input-text) !important;
  }

  /* We should consolidate input styles that share the same behavior */
  .custom-property__input {
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    /* this is needed to override the styles from field__input */
    box-shadow: none;

    &:is(:hover, :focus) {
      /* this is needed to override the styles from field__input */
      box-shadow: none;
    }

    &:focus {
      /* this is needed to override the styles from field__input */
      outline: var(--focus-outline-width) solid var(--color-input-background);
    }
  }
/* END_BLOCK:product-custom-property */

/* START_BLOCK:product-details-footer (INDEX:206) */
.product-details-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 8px;
    gap: 16px;
    background: var(--card-bg);
    border-radius: 4px 4px 16px 16px;
  }

  .product-details-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .product-details-footer__number-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: var(--color-purple);
  }

  .product-details-footer__icon {
    flex-shrink: 0;
  }

  .product-details-footer__title,
  .product-details-footer__number {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: var(--color-purple);
  }

  .product-details-footer__title--desktop {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .product-details-footer {
      padding: 12px;
      gap: 12px;
    }

    .product-details-footer__contact {
      flex-direction: row;
      gap: 36px;
    }

    .product-details-footer__title--desktop {
      display: block;
    }
  }

  @media screen and (min-width: 1225px) {
    .product-details-footer {
      padding: 16px;
      gap: 16px;
    }
  }

  /* === Variant C (A/B-Test) — scoped via body class from template.suffix === */

  .variant-c,
  .variant-d,
  .variant-e {
    .product-details-footer {
      padding: 0.5rem;
      gap: 1rem;
      border-radius: 4px;

      .product-details-footer__card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
          'portrait contact'
          'about    about';
        column-gap: 1rem;
        row-gap: 1rem;
        width: 100%;
        align-items: center;
      }

      .product-details-footer__portrait {
        grid-area: portrait;
        width: 96px;
        height: 96px;
        border-radius: 50%;
        overflow: hidden;
        background: var(--color-background);
        flex-shrink: 0;
      }

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

      .product-details-footer__contact {
        grid-area: contact;
        flex-direction: column;
        gap: 0.25rem;
      }

      .product-details-footer__title {
        font-weight: 700;
        font-size: 1.125rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
      }

      .product-details-footer__row {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--color-purple);
        text-decoration: none;
      }

      .product-details-footer__value {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
        text-underline-offset: 3px;
      }

      .product-details-footer__about {
        grid-area: about;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
      }

      .product-details-footer__quote {
        margin: 0;
        font-size: 1rem;
        line-height: 140%;
        font-weight: 500;
        color: var(--color-purple);

        :is(p, :first-child) {
          margin: 0;
        }
      }

      .product-details-footer__advisor-name {
        margin: 0;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.5;
        color: var(--color-purple);
      }

      .product-details-footer__advisor-role {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.5;
        color: var(--color-purple-light);
      }
    }

    @media screen and (min-width: 750px) {
      .product-details-footer {
        .product-details-footer__card {
          grid-template-areas:
            'portrait about'
            'contact contact' !important;

          .product-details-footer__contact {
            display: flex;
            flex-direction: row !important;
            gap: 0.75rem;
            .product-details-footer__title {
              display: none;
            }
          }
        }
      }
    }
  }
/* END_BLOCK:product-details-footer */

/* START_BLOCK:product-details-header (INDEX:207) */
@media screen and (min-width: 1225px) {
    .product-details-header {
      gap: 16px;
      padding: 16px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .product-details-header {
      gap: 16px;
      padding: 12px;
    }
  }

  @media screen and (max-width: 749px) {
    .product-details-header {
      gap: 8px;
      padding: 8px;
    }
  }

  .product-details-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 680px;
    width: 100%;

    background: #f3f8fe;
    border-radius: 16px 16px 4px 4px;
  }

  .product-details-header--not-first-item {
    border-radius: 4px 4px 4px 4px !important;
  }

  /* ------------------------------------------------------------------------------- head-wrapper */

  @media screen and (min-width: 1225px) {
    .product-details-header__head-wrapper {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
  }

  @media screen and (min-width: 891px) and (max-width: 1224px) {
    .product-details-header__head-wrapper {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
  }

  @media screen and (max-width: 890px) {
    .product-details-header__head-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .product-details-header__title-wrapper {
      width: 100%;
    }

    .product-details-header__title {
      width: 100%;
      overflow-wrap: break-word !important;
      text-wrap: auto !important;
    }
  }

  .product-details-header__head {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
  }

  .product-details-header__past-purchases {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 0px 8px;
    border-bottom: 1px solid #d1e3fc;
  }

  .product-details-header__head-wrapper {
    padding: 0px;
    gap: 4px;
    width: 100%;
  }

  .product-details-header__title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  /* --- FONTS --- */
  @media screen and (min-width: 1225px) {
    .product-details-header__title {
      font-size: 24px;
      line-height: 120%;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .product-details-header__title {
      font-size: 24px;
      line-height: 120%;
    }
  }

  @media screen and (max-width: 749px) {
    .product-details-header__title {
      font-size: 24px;
      line-height: 120%;
    }
  }
  .product-details-header__title {
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 700;

    color: #43334b;
    margin: 0px;
  }

  .product-details-header__subtitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;

    color: #755c81;
  }

  .product-details-header__past-purchases-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    text-align: left;

    color: #43334b;
  }

  /* ----------- reviews-wrapper */

  @media screen and (min-width: 891px) {
    .product-details-header__reviews-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
    }
  }

  @media screen and (max-width: 890px) {
    .product-details-header__reviews-wrapper {
      display: flex;
      width: 100%;
      flex-direction: row;
      align-items: center;
      column-gap: 8px;
    }
  }

  @media screen and (max-width: 300px) {
    .product-details-header__reviews-wrapper {
      flex-wrap: wrap;
    }
  }

  .pdp_rating-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
  }

  .pdp_rating-stars {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5px 0px;
  }

  .pdp__rating-value-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 3px;
    flex-shrink: 0;
  }

  /* --- FONTS --- */
  @media screen and (min-width: 1225px) {
    .pdp__rating-value {
      height: 21px;
      font-size: 12px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .pdp__rating-value {
      height: 18px;
      font-size: 12px;
    }
  }

  @media screen and (max-width: 749px) {
    .pdp__rating-value {
      height: 15px;
      font-size: 12px;
    }
  }

  .pdp__rating-value {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .pdp__rating-value--strong {
    color: #43334b;
  }

  .pdp__rating-value--weak {
    color: #755c81;
  }

  .pdp__total-ratings {
    height: 14px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;

    color: #755c81;
  }

  /* ------------------------------------------------------------------------------- description-wrapper*/

  /* ----------- description_feature */

  @media screen and (min-width: 1225px) {
    .description_feature-text {
      font-size: 14px;
    }

    .description_feature-item > img {
      width: 16px;
      height: 16px;
    }

    .description_feature-item {
      width: 100%;
      min-height: 21px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .description_feature-text {
      /*font-size: 12px;*/
      font-size: 14px;
    }

    .description_feature-item > img {
      width: 12px;
      height: 12px;
    }

    .description_feature-item {
      width: 100%;
      min-height: 18px;
    }
  }

  @media screen and (min-width: 750px) {
    .description_feature-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      row-gap: 4px;
      column-gap: 16px;
    }
  }

  @media screen and (max-width: 749px) {
    .description_feature-text {
      /*font-size: 12px;*/
      font-size: 14px;
    }

    .description_feature-item > img {
      width: 12px;
      height: 12px;
    }

    .description_feature-item {
      width: 100%;
      min-height: 18px;
    }

    .description_feature-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0px;
      gap: 4px;
      width: 100%;
    }
  }

  .description_feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
  }

  .description_feature-item > img {
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .description_feature-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /*color: #755C81;*/
    color: #43334b;
  }

  /* ----------- description-wrapper */

  @media screen and (min-width: 750px) {
    .description_description-wrapper {
      row-gap: 8px;
    }

    .description_description-text {
      font-size: 14px;
    }

    .description_controll-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      height: 20px;
    }
  }

  @media screen and (max-width: 749px) {
    .description_description-wrapper {
      row-gap: 4px;
    }

    .description_description-text {
      font-size: 12px;
    }

    .description_controll-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      row-gap: 8px;
    }
  }

  .description_description-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .description_controll-wrapper {
    width: 100%;
  }

  .description_description-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: #43334b;
  }

  .description_controll-button,
  .description_guarantee-button {
    background: none;
    border: none;
    padding: 0px;
    cursor: pointer;
  }

  .description_controll-button-text {
    height: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;

    text-decoration-line: underline;
    color: #43334b;
  }

  .description_controll-button-text--hidden,
  .description_description-text--hidden {
    display: none;
  }

  .description_guarantee-button {
    display: flex;
    flex-direction: row;
    column-gap: 4px;
  }

  .description_guarantee-button-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 135%;

    text-decoration-line: underline;

    color: #43334b;
  }

  .description_guarantee-button > svg {
    width: 12px;
    height: 12px;
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* ------------------------------------------------------------------------------- price-wrapper */
  @media screen and (min-width: 1225px) {
    .product-details-header__price-wrapper {
      box-sizing: border-box;

      display: flex;
      flex-direction: row;
      align-items: flex-start;

      gap: 36px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .product-details-header__price-wrapper {
      box-sizing: border-box;

      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 24px;
    }
  }

  @media screen and (max-width: 749px) {
    .product-details-header__price-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  }
  .product-details-header__price-wrapper {
    box-sizing: border-box;
    padding: 16px 0px 0px;
    border-top: 1px solid #d1e3fc;
    width: 100%;
  }

  /* --------------------------------------------- price-content-wrapper */

  .product-details-header__price-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 207px;
    min-width: 207px;
  }

  .product-details-header__tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    white-space: nowrap;
    height: 24px;

    background: #51b92c;
    border-radius: 16px;
  }

  .product-details-header__price-and-tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 0px;
    height: 29px;
    width: 100%;
  }

  .product-details-header__discount-price-and-tax {
    display: flex;
    flex-direction: row;
    align-items: flex-start;

    padding: 0px;
    gap: 8px;

    height: 17px;
    width: 100%;
  }

  /* --- FONTS --- */

  .product-details-header__price {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    color: #382943;
    white-space: nowrap;

    height: 24px;
    font-size: 20px;
    line-height: 24px;
  }

  .product-details-header__tag-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: #ffffff;
    font-size: 12px;
  }

  .product-details-header__discount-price {
    height: 17px;
    font-size: 12px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: line-through;

    color: #f5576e;
  }

  .product-details-header__tax {
    height: 15px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 150%;

    color: #43334b;
  }

  /* ------------------------------------------------------------------------------- product-details-banner */
  @media screen and (min-width: 750px) {
    .product-details-banner {
      flex-direction: row;
      align-items: center;
      gap: 16px;
      height: 42px;
    }
  }

  @media screen and (max-width: 749px) {
    .product-details-banner {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
  }

  .product-details-banner {
    display: flex;
    padding: 8px;

    background: #a7c2eb;
    border-radius: 16px 16px 4px 4px;
  }

  .product-details-banner__badge {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    padding: 4px 8px;
    gap: 8px;

    height: 26px;

    background: linear-gradient(261.1deg, #d73554 0%, #dc512b 100%);
    border-radius: 8px;
  }

  /* --- FOMTS --- */

  .product-details-banner__badge-text {
    height: 18px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;

    color: #ffffff;
  }

  .product-details-banner__countdown {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 135%;

    color: #43334b;
  }

  /* === Variant C (A/B-Test) — scoped via body class from template.suffix === */

  .variant-c,
  .variant-d,
  .variant-e {
    .product-details-banner {
      background: linear-gradient(10deg, #ff8c21 0%, #f5576e 100%);
      border-radius: 0.25rem;
      padding: 0.5rem;
      align-items: center;
      .product-details-banner__badge {
        background: transparent;
        border-radius: 0;
        padding: 0;
        height: auto;
        gap: 0.5rem;
        align-items: flex-start;
        svg {
          flex-shrink: 0;
          width: 20px;
          height: 20px;
          margin-top: 0.125rem;
        }
        .product-details-banner__badge-text {
          height: auto;
          line-height: 1.35;
        }
      }
    }

    .product-details-header {
      background: transparent;
      padding: 0;
      gap: 4px;

      .product-details-header__head,
      .product-details-header__description-wrapper {
        width: 100%;
        border-radius: 4px;
        background: var(--card-bg);
        padding: 0.5rem;

        .product-details-header__subtitle {
          font-size: 14px;
        }

        .description_feature-wrapper {
          margin-top: 0;
          padding-left: 0;
          .description_feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;

            svg {
              margin-top: 0.15rem;
              width: 20px;
              height: 20px;
            }
            .description_feature-text {
              color: var(--color-purple);
              font-size: 16px;
            }
            .description_feature-description {
              margin: 0;
              color: var(--color-purple-light);
            }
          }
        }
      }
    }

    .product-details-header__reviews-wrapper {
      .pdp__rating-value {
        color: var(--color-primary);
        font-size: 12px !important;
        height: auto;
      }
      a.pdp__total-ratings {
        color: var(--color-primary);
        text-decoration: underline;
        font-size: 12px;
        height: auto;
      }
    }

    .product-details-header__description-wrapper {
      .description_description-wrapper {
        margin-top: 0.5rem;

        .description_description-text {
          font-size: 16px;
          color: var(--color-purple);
        }
      }
    }

    .product-details-header__price-wrapper {
      background: var(--card-bg);
      padding: 0.25rem 0.5rem 0.5rem;
      border-radius: 0 0 4px 4px;
      border: none;

      .product-details-header__price-content-wrapper {
        width: 100%;
        border-top: 1px solid var(--color-background);
        padding-top: 0.5rem;
      }
    }

    @media screen and (min-width: 750px) {
      .product-details {
        padding-left: 0 !important;

        section:has(.audio-message) {
          display: none;
        }
      }
      .product-details-header__head-wrapper {
        flex-direction: column;
        gap: 0.5rem;

        .product-details-header__reviews-wrapper {
          flex-direction: row;
          align-items: center;
          gap: 1rem;
        }
      }

      .product-details-banner__badge-text {
        padding-top: 0.2rem;
      }
      .description_feature-description {
        font-size: 0.875rem;
        font-weight: 500;
      }
    }
  }

  :is(.variant-e) {
    .product-details-header {
      gap: 0;
      .product-details-header__description-wrapper {
        border-radius: 4px 4px 0px 0px;
      }
    }

    .product-details-header__price-and-tag {
      justify-content: start;
      gap: 0.5rem;
    }

    @media (min-width: 750px) {
      .product-configurator-e__trust {
        flex-direction: row;
        .product-configurator-e__trust-note {
          flex: 1 1 calc(45% - 0.5rem);
          justify-content: flex-end;
        }
        .product-configurator-e__payment-icons {
          flex: 1 1 calc(55% - 0.5rem);
          justify-content: flex-start;
        }
        .product-configurator-e__trust-links {
          flex-direction: row;
          justify-content: center;
        }
      }
    }
  }
  :is(.variant-d, .variant-e) {
    .product-details-header__variant-d-intro {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      padding: 1em 0;
    }

    .product-details-header__variant-d-tagline {
      font-family: var(--font-heading--family);
      font-size: clamp(1.75rem, 5vw, 2.5rem);
      font-weight: 700;
      line-height: 120%;
      color: #43334b;
      margin: 0;
      text-wrap: balance;
    }

    .product-details-header__variant-d-reviews {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      color: #43334b;
      font-size: 0.75rem;
      font-weight: 500;

      .product-details-header__variant-d-rating-link {
        color: inherit;
        text-decoration: underline;
      }
    }

    .product-details-header__variant-d-description {
      font-size: 1rem;
      font-weight: 500;
      line-height: 140%;
      color: var(--color-purple);
      margin: 0;
    }

    .product-details-header__variant-d-card-inner {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      background: var(--card-bg);
      padding: 0.5rem;
      border-radius: 4px;
    }

    .product-details-header__variant-d-card-title {
      font-family: 'Newsreader';
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 120%;
      color: #43334b;
      margin: 0;
    }

    .product-details-header__variant-d-card-subtitle {
      font-family: 'Inter';
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 140%;
      color: #755c81;
    }

    @media screen and (min-width: 750px) {
      .product-details-header__variant-d-tagline {
        padding-right: 1rem;
      }
    }
  }
/* END_BLOCK:product-details-header */

/* START_BLOCK:product-inventory (INDEX:208) */
.product-inventory__status {
    display: flex;
    align-items: center;
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    gap: var(--padding-xs);
  }

  .product-inventory__icon,
  .product-inventory__icon svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .product-inventory__icon-low {
    color: var(--color-lowstock);
  }

  .product-inventory__icon-in_stock {
    color: var(--color-instock);
  }

  .product-inventory__icon-out_of_stock {
    color: var(--color-outofstock);
  }

  .product-inventory__icon circle:first-of-type {
    opacity: 0.3;
  }
/* END_BLOCK:product-inventory */

/* START_BLOCK:product-media-programmatic (INDEX:209) */
.product-media-programmatic {
    --product-media-fit: contain;
    --media-preview-ratio: 1;
    display: block;
    width: 100%;
  }

  .product-media-programmatic .product-media-container--card {
    background-color: var(--color-background);
    border-radius: var(--media-radius, 8px);
    overflow: hidden;
  }

  .product-media-programmatic .product-media-programmatic__hero-slide {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
  }

  .product-media-programmatic .product-media-programmatic__hero-slide .product-media-constraint-wrapper {
    flex: 1 1 auto;
    min-height: 0;
  }

  .product-media-programmatic .product-media__hero-cards {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
    margin-inline: 0.5rem;
  }

  .product-media-programmatic .product-media__hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 0.875rem 0.5rem;
    background: var(--color-background, #eaf1ff);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .product-media-programmatic .product-media__hero-card-image {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
  }

  .product-media-programmatic .product-media__hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-media-programmatic .product-media__hero-card-content {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 130%;
    color: #43334b;
  }

  .product-media-programmatic .product-media__hero-card-content p {
    margin: 0;
  }

  .product-media-programmatic .product-media__hero-card-content strong {
    font-weight: 700;
  }

  @media screen and (min-width: 750px) {
    .product-media-programmatic .product-media__hero-cards {
      gap: 0.75rem;
    }

    .product-media-programmatic .product-media__hero-card {
      padding: 1rem 0.75rem;
      gap: 0.625rem;
    }

    .product-media-programmatic .product-media__hero-card-image {
      width: 32px;
      height: 32px;
    }

    .product-media-programmatic .product-media__hero-card-content {
      font-size: 0.9375rem;
    }
  }

  .product-media-programmatic .programmatic-gallery__thumbnail--card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background-color: var(--color-background-subtle, #f3f8fe);
    color: #43334b;
  }

  .product-media-programmatic .programmatic-gallery__thumbnail-icon {
    display: inline-flex;
    width: 60%;
    height: 60%;
  }

  .product-media-programmatic .programmatic-gallery__thumbnail-icon svg {
    width: 100%;
    height: 100%;
  }

  .product-media-programmatic .programmatic-gallery__thumbnail-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    transform: scale(0.245);
    transform-origin: 0 0;
    pointer-events: none;
  }

  .product-media-programmatic .programmatic-gallery__thumbnail-preview .gallery-card {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
/* END_BLOCK:product-media-programmatic */

/* START_BLOCK:product-recommendations (INDEX:210) */
.product-recommendations-wrapper {
    width: 100%;
  }

  .product-recommendations-wrapper:has(product-recommendations[data-shopify-editor-preview]) {
    width: 100vw;
  }

  .product-recommendations {
    display: block;
  }

  .product-recommendations__skeleton-item {
    aspect-ratio: 3 / 4;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity);
    border-radius: 4px;
  }
/* END_BLOCK:product-recommendations */

/* START_BLOCK:review (INDEX:214) */
.rating-wrapper {
    width: 100%;
    gap: var(--gap-xs);
    flex-wrap: wrap;
  }

  .rating-color--primary {
    --star-fill-color: var(--color-primary);
    --star-fill-color-rgb: var(--color-primary-rgb);
  }

  .rating-color--foreground {
    --star-fill-color: var(--color-foreground);
    --star-fill-color-rgb: var(--color-foreground-rgb);
  }

  .rating-wrapper,
  .rating {
    display: flex;
    align-items: center;
  }

  .rating-wrapper.justify-right {
    flex-direction: row-reverse;
  }

  .rating {
    gap: var(--gap-3xs);
  }

  .rating-wrapper .rating-text,
  .rating-wrapper .rating-count,
  .rating-wrapper .rating-count-separator {
    color: var(--star-fill-color);
    margin: 0;
    white-space: nowrap;
  }

  .rating-count-separator {
    opacity: var(--opacity-20);
    padding-left: calc(var(--padding-xs) / 2);
    padding-right: var(--padding-xs);
  }

  .stars {
    height: var(--star-size);
    fill: var(--empty-star-fill-color);
  }

  .filled-star {
    fill: var(--star-fill-color);
  }
/* END_BLOCK:review */

/* START_BLOCK:social-links (INDEX:218) */
.social-icons__wrapper {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    justify-content: center;

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

  .social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    fill: currentColor;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:social-links */

/* START_BLOCK:spacer (INDEX:219) */
/* Fill opposite direction */
  .layout-panel-flex--column > .spacer-block {
    width: 100%;
  }

  .layout-panel-flex--row > .spacer-block {
    height: 100%;
  }

  /* Flex - Percent */
  :is(.layout-panel-flex--row, .layout-panel-flex--column) > .spacer-block--size-percent {
    flex: var(--spacer-size);
  }

  /* Flex - Pixel */
  .layout-panel-flex--row > .spacer-block--size-pixel {
    width: var(--spacer-size);
  }

  .layout-panel-flex--column > .spacer-block--size-pixel {
    height: var(--spacer-size);
  }

  /* Mobile */
  @media screen and (max-width: 750px) {
    /* Percent */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-percent {
      flex: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-percent,
    .mobile-column > .spacer-block--size-percent:not(.spacer-block--size-mobile-pixel) {
      width: 100%;
      flex: var(--spacer-size-mobile);
    }

    /* Pixel */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-pixel {
      width: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-pixel,
    .mobile-column > .spacer-block--size-mobile-pixel {
      width: 100%;
      flex: 0;
      height: var(--spacer-size-mobile);
    }
  }
/* END_BLOCK:spacer */

/* START_BLOCK:swatches (INDEX:220) */
product-swatches {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 0;
    flex-shrink: 0;
  }

  swatches-variant-picker-component {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: var(--product-swatches-alignment-mobile);

    @media (min-width: 750px) {
      justify-content: var(--product-swatches-alignment);
    }
  }

  swatches-variant-picker-component .variant-option--swatches {
    padding-block: calc(
        var(--product-swatches-padding-block-start) + var(--focus-outline-offset) + var(--focus-outline-width)
      )
      calc(var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width));
    padding-inline: calc(
        var(--product-swatches-padding-inline-start) + var(--focus-outline-offset) + (1.5 * var(--focus-outline-width))
      )
      calc(var(--product-swatches-padding-inline-end) + var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .variant-option--swatches {
    overflow-list::part(list) {
      gap: var(--gap-sm);
    }

    overflow-list[defer]::part(list) {
      flex-wrap: nowrap;
    }
  }

  .hidden-swatches__count {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;

    &::before {
      /* This doesn't work in Safari without the counter-reset. https://stackoverflow.com/a/40179718 */
      counter-reset: overflow-count var(--overflow-count);
      content: '+' counter(overflow-count);
      line-height: 1;
      cursor: pointer;
    }
  }

  .hidden-swatches__count:hover {
    color: var(--color-foreground-rgb);
  }
/* END_BLOCK:swatches */

/* START_BLOCK:text (INDEX:221) */
.text-wrap img.details__icon {
    margin: auto;
  }
  .text-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  @media screen and (min-width: 1225px) {
    .text-wrap img.details__icon {
      width: 30px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .text-wrap img.details__icon {
      width: 24px;
    }
  }

  @media screen and (max-width: 749px) {
    .text-wrap img.details__icon {
      width: 25px;
    }
  }
/* END_BLOCK:text */

/* START_BLOCK:video (INDEX:224) */
.placeholder-video {
    aspect-ratio: 5 / 3;
  }
/* END_BLOCK:video */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:account-actions (INDEX:225) */
.account-actions {
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: height var(--animation-values);

    &:has([data-active]) .account-actions__main-menu {
      visibility: hidden;
    }
  }

  .account-actions__header {
    padding: var(--padding-xl);
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
  }

  .account-actions__title {
    /* Ideally we set the font-size here, but specificity issues make this necessary */
    --font-h5--size: var(--font-size--lg);

    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .account-actions__email {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
    max-width: var(--account-actions-max-width);
    word-break: break-all;
  }

  .account-actions__sign-ins {
    padding: var(--padding-xl);
    padding-block-start: 0;
    padding-block-end: var(--padding-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .account-actions__sign-in-text {
    display: inline;
  }

  .account-actions__fallback-text {
    display: none;
  }

  .account-actions__sign-ins:not(:has(shop-login-button)) {
    gap: 0;

    .account-actions__sign-in-text {
      display: none;
    }

    .account-actions__fallback-text {
      display: block;
    }
  }

  /* Makes the shop login button radius match the theme settings */
  .account-actions__shop-login {
    --buttons-radius: var(--style-border-radius-buttons-primary);
  }

  .account-actions__nav {
    padding: var(--padding-xl);
    padding-block-start: 0;
  }

  .account-actions__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;

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

  .account-actions__link {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .account-actions__icon {
    display: flex;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    margin-block: -4px;
  }

  /* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */

  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /**
    There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround.
    Using element selector to increase specificity.
  **/

    .account-actions :is(a.button, a.button-secondary):focus-visible {
      outline: none;
      overflow: visible;
      position: relative;

      &::after {
        content: '';
        position: absolute;
        inset: calc(-1 * var(--focus-outline-offset));
        border: var(--focus-outline-width) solid currentColor;
        border-radius: var(--style-border-radius-buttons-secondary);
        display: inherit;
      }
    }

    .account-actions a.button:focus-visible::after {
      border-color: var(--button-background-color);
      border-radius: var(--style-border-radius-buttons-primary);
    }
  }
/* END_SNIPPET:account-actions */

/* START_SNIPPET:account-button (INDEX:226) */
.account-button {
    color: var(--color-foreground);
    appearance: none;
    border: none;
    background: none;
    height: var(--button-size);
    width: var(--button-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    transition: color var(--animation-speed) var(--animation-easing);
    anchor-name: --account-button-trigger;
  }

  .account-button__avatar {
    --account-button-size: 1.625rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--account-button-size);
    height: var(--account-button-size);
    border-radius: var(--style-border-radius-50);
    background-color: var(--color-primary-button-background);
    font-size: var(--font-size--sm);
    font-weight: 500;
    color: var(--color-primary-button-text);
    text-transform: uppercase;
    line-height: 1;
  }

  .account-button__icon {
    color: currentColor;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* The shop avatar doesn't bubble the click event up to our button, so we need to prevent that or the button doesn't work */
  .account-button shop-user-avatar {
    pointer-events: none;
  }
/* END_SNIPPET:account-button */

/* START_SNIPPET:account-drawer (INDEX:227) */
.account-drawer {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .account-drawer__dialog {
    --animation-speed: 0.24s;
    --dialog-drawer-opening-animation: account-drawer-slide-in;
    --dialog-drawer-closing-animation: account-drawer-slide-out;

    height: fit-content;
    margin: 0;
    inset-block-end: 0;
    inset-block-start: auto;
    border-radius: 0;
    padding: 0;
  }

  .account-drawer__close-button {
    z-index: 1;
    inset-block-start: var(--padding-xs);
    inset-inline-end: var(--padding-xs);
    color: var(--color-foreground);
    background-color: transparent;
  }

  .account-drawer__close-button .svg-wrapper {
    display: flex;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
  }

  @keyframes account-drawer-slide-in {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  @keyframes account-drawer-slide-out {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(100%);
    }
  }
/* END_SNIPPET:account-drawer */

/* START_SNIPPET:account-popover (INDEX:228) */
.account-popover {
    --account-popover-min-width: 22rem;
    --account-actions-max-width: 22rem;
  }

  .account-popover__summary {
    padding: 0;

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

  .account-popover__panel {
    --account-popover-opacity: 0;
    --account-popover-y: 20px;
    position-anchor: --account-button-trigger;
    border-radius: var(--style-border-radius-popover);
    margin: 0;
    left: unset;
    width: max-content;
    min-width: var(--account-popover-min-width);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    overflow-y: hidden;
    opacity: var(--account-popover-opacity);
    translate: 0 var(--account-popover-y);
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    top: calc(anchor(bottom) + var(--header-padding));
    right: anchor(right);

    &:popover-open {
      --account-popover-opacity: 1;
      --account-popover-y: 0px;
    }

    @supports not (position-anchor: --account-button-trigger) {
      top: calc(var(--anchor-top) * 1px + var(--minimum-touch-target) + var(--header-padding));
      right: calc(var(--anchor-right) * 1px);
    }

    @supports not selector(:popover-open) {
      &.\:popover-open {
        --account-popover-opacity: 1;
        --account-popover-y: 0px;
      }
    }
  }

  @starting-style {
    .account-popover__panel {
      --account-popover-opacity: 0.7;
      --account-popover-y: 20px;
    }

    .account-popover__panel:popover-open {
      --account-popover-opacity: 0.7;
      --account-popover-y: 20px;
    }
  }
/* END_SNIPPET:account-popover */

/* START_SNIPPET:add-to-cart-button-grid (INDEX:229) */
.add-to-cart-text {
    display: flex;
    gap: var(--gap-2xs);
    align-items: center;
    justify-content: center;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text {
    animation-name: atc-slide-out;
  }

  .add-to-cart-text--added {
    position: absolute;
    inset: 0;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: width var(--animation-speed) var(--animation-easing),
      opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text--added {
    animation-name: atc-slide-in;
  }

  @keyframes atc-slide-in {
    from {
      opacity: 0;
      transform: translateY(0.5em);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes atc-slide-out {
    from {
      transform: translateY(0);
      opacity: 1;
    }

    to {
      transform: translateY(-1em);
      opacity: 0;
    }
  }
/* END_SNIPPET:add-to-cart-button-grid */

/* START_SNIPPET:add-to-cart-button (INDEX:230) */
.add-to-cart-text {
    height: 24px;
      
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
      
    color: #FFFFFF;
  }

  .add-to-cart-text {
    display: flex;
    gap: var(--gap-2xs);
    align-items: center;
    justify-content: center;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text {
    animation-name: atc-slide-out;
  }

  .add-to-cart-text--added {
    position: absolute;
    inset: 0;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: width var(--animation-speed) var(--animation-easing),
      opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text--added {
    animation-name: atc-slide-in;
  }

  @keyframes atc-slide-in {
    from {
      opacity: 0;
      transform: translateY(0.5em);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes atc-slide-out {
    from {
      transform: translateY(0);
      opacity: 1;
    }

    to {
      transform: translateY(-1em);
      opacity: 0;
    }
  }
/* END_SNIPPET:add-to-cart-button */

/* START_SNIPPET:additional-tests (INDEX:231) */
@media screen and (min-width: 1225px) {
    .additional-tests {
      padding: 16px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .additional-tests {
      padding: 12px;
    }
  }

  @media screen and (max-width: 749px) {
    .additional-tests {
      padding: 8px;
    }
  }
  .additional-tests {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    width: 100%;

    background: #f3f8fe;
    border-radius: 4px;
  }

  .additional-tests__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    height: 20px;
  }

  .additional-tests__header > svg {
    width: 20px;
    height: 20px;
    flex: none;
    flex-grow: 0;
  }

  .additional-tests__item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;

    width: 100%;
  }

  /* ---------------------------------------- additional-test (item) */

  .additional-test {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    width: 100%;
  }

  .additional-test__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    width: 100%;
  }

  .additional-test__title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0px;
    gap: 8px;

    width: 100%;
    height: 17px;
  }

  .additional-test__checkbox {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer;

    border: 1.7px solid #43334b;
    border-radius: 2px;
    -webkit-border-radius: 2px;

    -webkit-appearance: none;
    appearance: none;

    flex: 0 0 16px;

    background-repeat: no-repeat;
    background-position: 50% 52%;
    background-size: 10px 8px;

    /*border: 1.7px solid #43334b;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    transition: all 0.2s ease-in-out;

    flex: none;
    order: 0;
    flex-grow: 0;*/
  }

  .additional-test > input[type='checkbox']:checked {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%2343334B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .additional-test__info-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;

    /*height: 16px;*/
  }

  .additional-test__info-wrapper > svg {
    flex-grow: 0;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .additional-test__info-popup {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    width: 300px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;

    overflow-wrap: break-word;
    word-break: break-word;
  }

  .additional-test__info-popup.active {
    display: block;
  }

  /* --- FONTS --- */

  .additional-tests__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    color: #43334b;

    margin: 0px;
  }

  .additional-test__title {
    height: 17px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;

    color: #43334b;
  }

  .additional-test__title-price {
    height: 15px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 150%;

    color: #43334b;
  }

  .additional-test__info {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 120%;

    color: #755c81;
  }

  .additional-test__info-popup-text {
    font-family: 'Inter';
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    color: #755c81;
  }
/* END_SNIPPET:additional-tests */

/* START_SNIPPET:background-video (INDEX:235) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-video */

/* START_SNIPPET:bento-grid (INDEX:236) */
.bento-box {
    display: grid;
    column-gap: var(--bento-gap);
    row-gap: calc(var(--bento-gap) * 1.5);
    width: 100%;
  }

  .bento-box:has(.collection-card--image-bg) {
    row-gap: var(--bento-gap);
  }

  .bento-box ~ .bento-box {
    padding-block-start: var(--bento-gap);
  }

  @media (max-width: 900px) {
    .bento-box {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-box__item:nth-child(3n + 1) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 2) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 3) {
      grid-column: span 2;
    }

    /* Ensure last items create a full row */
    .bento-box__item:last-child:nth-child(3n + 5) {
      grid-column: span 1;
    }

    .bento-box__item:last-child:nth-child(3n + 4) {
      grid-column: span 2;
    }
  }

  @media (min-width: 901px) {
    .bento-box {
      grid-template-columns: repeat(12, 1fr);
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K L L L L';
    }

    .bento-box__item:nth-child(1) {
      grid-area: A;
    }

    .bento-box__item:nth-child(2) {
      grid-area: B;
    }

    .bento-box__item:nth-child(3) {
      grid-area: C;
    }

    .bento-box__item:nth-child(4) {
      grid-area: D;
    }

    .bento-box__item:nth-child(5) {
      grid-area: E;
    }

    .bento-box__item:nth-child(6) {
      grid-area: F;
    }

    .bento-box__item:nth-child(7) {
      grid-area: G;
    }

    .bento-box__item:nth-child(8) {
      grid-area: H;
    }

    .bento-box__item:nth-child(9) {
      grid-area: I;
    }

    .bento-box__item:nth-child(10) {
      grid-area: J;
    }

    .bento-box__item:nth-child(11) {
      grid-area: K;
    }

    .bento-box__item:nth-child(12) {
      grid-area: L;
    }

    /* === Overrides for specific cases === */

    /* Exactly 1 item */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(1)) {
      grid-template-areas: 'A A A A A A A A A A A A';
    }

    /* Exactly 2 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(2)) {
      grid-template-areas: 'A A A A A A B B B B B B';
    }

    /* Exactly 4 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(4)) {
      grid-template-areas:
        'A A A A B B B B B B B B'
        'C C C C C C C C D D D D';
    }

    /* Exactly 5 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(5)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E E E E';
    }

    /* Exactly 7 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(7)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D D D D E E E'
        'F F F F F F G G G G G G';
    }

    /* Exactly 8 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(8)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H H H H H H H';
    }

    /* Exactly 10 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(10)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G G G G G G G H H H'
        'I I I J J J J J J J J J';
    }

    /* Exactly 11 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(11)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K K K K K';
    }
  }
/* END_SNIPPET:bento-grid */

/* START_SNIPPET:blog-comment-form (INDEX:237) */
.blog-post-comments__form-container {
    --comment-form-gap: var(--gap-md);

    width: 100%;
    max-width: var(--normal-content-width);
    margin: var(--margin-4xl) auto 0;
  }

  .blog-post-comments__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--comment-form-gap);

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

  .blog-post-comments__form-input {
    padding: var(--padding-lg) var(--padding-xl);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
  }

  .blog-post-comments__form-input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .blog-post-comments__form-message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .blog-post-comments__form-body {
    grid-column: 1 / -1;
  }

  .blog-post-comments__form-input:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .blog-post-comments__form-moderated {
    font-size: var(--font-size--xs);
  }

  .blog-post-comments__form-submit {
    margin-block-start: var(--comment-form-gap);
  }
/* END_SNIPPET:blog-comment-form */

/* START_SNIPPET:button (INDEX:239) */
.link {
    text-decoration: none;
    text-decoration-color: currentcolor;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration-color: transparent;
    }
  }
/* END_SNIPPET:button */

/* START_SNIPPET:card-gallery (INDEX:241) */
a.contents.feature_img {
    width: 51%;
    display: block;
}
.card-gallery{
    display: flex;
    justify-content: space-between;
    border-radius: 4px 4px 16px 16px;
}

  .card-gallery {
    overflow: hidden;
    container-type: inline-size; /* Make card-gallery a container */
    container-name: card-gallery-container; /* Optional: name the container */
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* START_SNIPPET:cart-discount (INDEX:243) */
.cart-discount__input {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    border-style: solid;
    border-radius: var(--style-border-radius-inputs);
    padding: var(--padding-sm) var(--padding-md);
    height: 100%;
    flex-grow: 1;
    min-width: 0;
  }

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

  .cart-discount__pill-code {
    overflow: hidden;
    max-width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }

  .cart-discount {
    width: 100%;
  }

  .cart-discount__codes {
    display: none;
    gap: var(--padding-xs);
    flex-wrap: wrap;
    list-style: none;
    padding-inline: 0;
    margin: 0;
  }

  .cart-discount__codes:has(.cart-discount__pill) {
    display: flex;
  }

  .cart-discount__button {
    height: 100%;
  }

  .cart-discount__content {
    height: calc(var(--button-size) + var(--padding-2xs) + var(--padding-sm));
  }

  .cart-discount__pill {
    display: flex;
    color: var(--color-foreground);
    gap: var(--padding-xs);
    align-items: center;
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: var(--style-border-radius-pills);
    background-color: var(--color-input-background);
    text-transform: uppercase;
  }

  .cart-discount__form {
    display: flex;
    gap: var(--padding-md);
    align-items: center;
    height: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  :is(.cart-discount__pill-remove, .cart-discount__pill-remove:hover) {
    --close-icon-opacity: 0.4;

    color: var(--color-foreground);
    background-color: transparent;
    pointer-events: all;
    cursor: pointer;
    height: 100%;
  }

  .cart-discount__error {
    display: flex;
    align-items: center;
    width: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-discount__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
  }

  .cart-discount__error-text {
    margin-block-start: var(--margin-3xs);
  }
/* END_SNIPPET:cart-discount */

/* START_SNIPPET:cart-drawer (INDEX:244) */
@media screen and (min-width: 750px) {
    .cart-drawer__header {
      padding: 16px;
    }
  }

  @media screen and (max-width: 749px) {
    .cart-drawer__header {
      padding: 8px;
    }
  }

  .cart-items-component {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .cart-drawer__heading .cart-bubble {
    display: none;
    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] {
    aspect-ratio: 1;
    min-width: 26px;
  }

  .cart-drawer__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1;
    row-gap: 4px;
  }

  .cart-drawer__header-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }

  .cart-drawer__header-trust {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    column-gap: 4px;
  }

  .cart-drawer__header-trust > svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    flex-grow: 0;
  }

  .cart-drawer__header-trust-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    text-decoration-line: underline;
    color: #43334b;
  }

  .cart-drawer__dialog {
    overflow: hidden;
  }

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

  .cart-drawer__content {
    height: calc(100% - var(--header-height));
    display: flex;
    flex-direction: column;
  }

  .cart-drawer__summary {
    background-color: var(--color-background);
    position: sticky;
    bottom: 0;
    z-index: 1;
    padding: 0px !important;
  }

  /* --- */
  @media screen and (min-width: 750px) {
    .cart-drawer__dialog.dialog-modal.dialog-drawer {
      width: 500px;
    }
  }

  @media screen and (max-width: 749px) {
    .cart-drawer__dialog.dialog-modal.dialog-drawer {
      width: calc(100% - 20px);
    }
  }

  .cart-drawer__heading.h3 {
    height: 29px;

    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #43334b;
  }

  .cart-drawer__header > .cart-drawer__header-wrapper > .cart-drawer__close-button {
    width: 24px;
    height: 24px;
    position: unset;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .cart-drawer__header > .cart-drawer__header-wrapper > .cart-drawer__close-button > .svg-wrapper,
  .cart-drawer__header > .cart-drawer__header-wrapper > .cart-drawer__close-button > .svg-wrapper > svg {
    width: 24px;
    height: 24px;
  }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:cart-icon-component (INDEX:245) */
cart-icon:has(.cart-bubble__text-count:empty) {
    --cart-bubble-size: 10px;
    --cart-bubble-top: 9px;
    --cart-bubble-right: 9px;

    .svg-wrapper {
      --cart-bubble-top: 4px;
      --cart-bubble-right: 4px;
    }
  }
/* END_SNIPPET:cart-icon-component */

/* START_SNIPPET:cart-order-too (INDEX:247) */
@media screen and (min-width: 750px) {
    .cart-order-too__product-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 0px;
        gap: 36px;
        justify-content: space-between;
        width: 100%;
    }

    .cart-order-too__product-wrapper .new-product-card:not(:last-child) {
        border-right: 1px solid #D1E3FC;
    }
}

@media screen and (max-width: 749px) {
    .cart-order-too__product-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }

    .cart-order-too__product-wrapper .new-product-card:not(:last-child) {
        border-bottom: 1px solid #D1E3FC;
    }
}


.cart-order-too__heading {
    height:  24px;
    font-family: 'Inter';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #43334B;
}
/* END_SNIPPET:cart-order-too */

/* START_SNIPPET:collection-card (INDEX:255) */
.collection-card {
    --fixed-card-height: var(--height-small);
    flex: 1 1 var(--card-width-small);
    width: 100%;
    position: relative;
  }

  .collection-card > svg {
    height: 100%;
    width: 100%;
    aspect-ratio: var(--ratio);
  }

  .collection-card__inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: var(--collection-card-gap);
    display: flex;
    flex-direction: column;
  }

  .collection-card--image-bg .collection-card__inner {
    height: 100%;
  }

  .collection-card__inner {
    z-index: var(--layer-flat);
    pointer-events: none;

    a,
    button {
      /* only allow interactive elements to be clickable separate from .collection-card__link */
      pointer-events: auto;
    }
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .collection-card__content * {
    pointer-events: auto;
  }

  .collection-card__content {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 100%;
    gap: var(--collection-card-gap);
    flex-direction: column;
    align-items: var(--horizontal-alignment);
    justify-content: var(--vertical-alignment);
  }

  .collection-card__link {
    position: absolute;
    inset: 0;

    /* allows focus outline to have radius in supported browsers */
    border-radius: var(--border-radius);
  }

  /* Nested image block rules */

  .collection-card.collection-card--image-bg {
    aspect-ratio: var(--ratio);
  }

  .collection-card.collection-card--image-bg .collection-card__content {
    padding: var(--padding-lg);
  }

  /* Bento layout rules */
  .collection-card--image-height-fixed .collection-card__image {
    height: var(--fixed-card-height);
    width: 100%;
  }

  .collection-card--image-height-fixed.collection-card--image-bg {
    height: var(--fixed-card-height);
    aspect-ratio: unset;
  }

  .collection-card__image .image-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .collection-card--image-bg .collection-card__image {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .collection-card__image svg {
    height: 100%;
    width: 100%;
  }

  .resource-list:not(.hidden--desktop) .collection-card--flexible-aspect-ratio {
    &.collection-card.collection-card--image-bg,
    &.collection-card .placeholder-svg {
      aspect-ratio: 99;
    }

    .collection-card__image {
      aspect-ratio: 99;
      height: 100%;
    }

    .collection-card__inner {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .collection-card__content {
      flex-shrink: 0;
    }

    &:not(.collection-card--image-bg) .collection-card__content {
      height: auto;
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:contact-form (INDEX:257) */
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .contact-form__form-row {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);

    @media screen and (min-width: 750px) {
      flex-direction: row;
      align-items: center;
    }
  }

  .contact-form__input {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding: var(--padding-lg) var(--padding-xl);
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    -webkit-font-smoothing: antialiased;
  }

  .contact-form__input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .contact-form__error,
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }
/* END_SNIPPET:contact-form */

/* START_SNIPPET:disclosure-trigger (INDEX:259) */
.disclosure-trigger {
    cursor: pointer;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--padding-sm);
    width: 100%;
    border: none;
    background: #0000;

    &[aria-expanded='true'] .horizontal {
      rotate: 90deg;
    }

    &:is(:hover, :focus-visible) {
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }

    .horizontal {
      transform-box: fill-box;
      transform-origin: center;
    }

    svg {
      aspect-ratio: 1;
      width: var(--icon-size-xs);
    }
  }

  .disclosure-trigger__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--cart-font-size--sm);
  }

  @media (prefers-reduced-motion: no-preference) {
    .disclosure-trigger .horizontal {
      transition: rotate var(--surface-transition-duration) var(--surface-transition-timing);
    }
  }
/* END_SNIPPET:disclosure-trigger */

/* START_SNIPPET:divider (INDEX:260) */
.divider {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: var(--divider-justify-content);
  }

  .divider__line {
    border-bottom: var(--divider-border-thickness) solid var(--color-border);
    border-right: var(--divider-border-thickness) solid var(--color-border);
    border-radius: calc(var(--style-border-radius-sm) * var(--divider-border-rounded));
    flex-basis: var(--divider-flex-basis);
    min-height: var(--divider-flex-basis);
  }
/* END_SNIPPET:divider */

/* START_SNIPPET:editorial-blog-grid (INDEX:263) */
.editorial-blog__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .shopify-block {
      height: 100%;
    }
  }

  .editorial-blog__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .editorial-blog__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-blog__spacer {
      display: none;
    }

    .featured-blog-posts-card__image {
      min-height: 200px;
    }

    /* Mobile layout - also horizontally mirrored from collection grid */
    .editorial-blog__item-0 {
      width: 66%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-1 {
      width: 83%;
      align-self: flex-start; /* Originally flex-end, now flex-start */
    }

    .editorial-blog__item-2 {
      width: 83%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-3 {
      width: 100%;
      align-self: center; /* Stays centered */
    }
  }
/* END_SNIPPET:editorial-blog-grid */

/* START_SNIPPET:editorial-collection-grid (INDEX:264) */
.editorial-collection__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .resource-list__item,
    .collection-card {
      height: 100%;
    }
  }

  .editorial-collection__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .editorial-collection__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-collection__spacer {
      display: none;
    }

    .editorial-collection__item-0 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 4 / 5;
    }

    .editorial-collection__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 5 / 5;
    }

    .editorial-collection__item-2 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 8 / 6;
    }

    .editorial-collection__item-3 {
      width: 100%;
      align-self: center;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-collection-grid */

/* START_SNIPPET:editorial-product-grid (INDEX:265) */
.editorial-product__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    /* Make the aspect ratio super high on width, then increase the height of
     * slideshow containers until they fill all the available space */
    .card-gallery {
      /* stylelint-disable-next-line declaration-no-important */
      --gallery-aspect-ratio: 99 !important;
    }

    .card-gallery,
    slideshow-component,
    slideshow-container,
    slideshow-slides {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .editorial-product__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-product__spacer {
      display: none;
    }

    .editorial-product__item-0 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 7 / 6;
    }

    .editorial-product__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 4 / 5;
    }

    .editorial-product__item-2 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 5 / 5;
    }

    .editorial-product__item-3 {
      width: 100%;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-product-grid */

/* START_SNIPPET:facets-actions (INDEX:266) */
/* Facets - Actions */
  .facets__actions {
    --to-top-gradient-background: linear-gradient(
      to top,
      rgb(var(--color-background-rgb) / var(--opacity-90)),
      rgb(var(--color-background-rgb) / var(--opacity-80)),
      rgb(var(--color-background-rgb) / var(--opacity-40)),
      transparent
    );

    order: 1;
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap-sm);
    background-image: var(--to-top-gradient-background);
    z-index: var(--facets-sticky-z-index);
    padding-block-start: var(--padding-xs);
    padding-block-end: var(--padding-md);
    padding-inline: var(--padding-lg);
    margin-top: auto;
  }

  .facets:not(.facets--drawer) .facets__actions {
    @media screen and (min-width: 750px) {
      position: static;
    }
  }

  .facets--vertical .facets__actions {
    padding-inline: 0;
    justify-content: center;
  }

  .facets--horizontal .facets__actions {
    @media screen and (min-width: 750px) {
      order: 0;
      bottom: auto;
      position: static;
      padding: 0;
      z-index: var(--layer-flat);
      flex-shrink: 0;
      align-items: center;
      margin-top: initial;
      background-image: none;
    }
  }

  .facets--horizontal .facets__actions--active::before {
    @media screen and (min-width: 750px) {
      content: '';
      border-inline-start: var(--style-border-width) solid var(--color-border);
      height: var(--font-paragraph--size);
      position: absolute;
    }
  }

  /* Clear button */
  .facets__clear {
    display: none;
  }

  .facets--horizontal .facets__clear {
    @media screen and (min-width: 750px) {
      width: 100%;
      justify-content: flex-end;
      padding: 0 var(--facets-clear-padding) var(--facets-clear-padding) 0;
      cursor: pointer;
    }
  }

  .facets__clear--active {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .clear-filter:hover {
    text-decoration: underline;
    background-color: transparent;
  }

  /* Clear all button */
  .facets__clear-all {
    display: none;
    cursor: pointer;
    min-width: var(--facets-clear-all-min-width);
    transition: transform var(--animation-values), opacity var(--animation-values);
    opacity: 0;
    transform: translateY(100%);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets:not(.facets--drawer) .facets__clear-all {
    box-shadow: none;
  }

  .facets--horizontal .facets__clear-all {
    @media screen and (min-width: 750px) {
      --facets-clear-all-min-width: var(--minimum-touch-target);
      --button-color: var(--color-primary);

      text-decoration: underline transparent 0.075em;
      text-underline-offset: 0.125em;
      width: auto;
      transform: none;
      opacity: 1;
      height: var(--minimum-touch-target);
      align-items: center;
      flex-grow: 0;
      transition: text-decoration-color var(--animation-speed) var(--animation-easing);
    }
  }

  .facets--horizontal .facets__clear-all:hover {
    @media screen and (min-width: 750px) {
      --button-color: var(--color-primary-hover);
    }
  }

  @starting-style {
    .facets__clear-all {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .facets__clear-all.active {
    transform: translateY(0);
    opacity: 1;
    display: grid;
  }

  .facets--horizontal .facets__clear-all.active {
    @media screen and (min-width: 750px) {
      padding-block: 0;
      padding-inline: var(--facets-form-horizontal-gap);
      background-color: transparent;
      position: static;
      transform: none;
    }
  }

  @starting-style {
    .facets__clear-all.active {
      opacity: 0;
      transform: translateY(100%);
    }

    .facets--horizontal .facets__clear-all.active {
      @media screen and (min-width: 750px) {
        opacity: 1;
        transform: none;
      }
    }
  }

  .facets__see-results {
    min-width: var(--facets-see-results-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets:not(.facets--drawer) .facets__see-results {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:facets-actions */

/* START_SNIPPET:filter-remove-buttons (INDEX:267) */
/* Facets - Remove buttons */
  .facets-remove {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;

    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    padding: 0 var(--drawer-padding);
    margin: 0;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 16px;
      --variant-picker-swatch-height: 16px;

      gap: var(--gap-2xs);
    }
  }

  .facets-remove:has(facet-remove-component) {
    display: flex;
    margin-block-start: var(--margin-2xs);
    margin-block-end: var(--margin-md);
  }

  .facets__clear-all-link {
    --button-color: var(--color-primary);

    border: none;
    background-color: transparent;
    padding: var(--padding-xs);
    min-width: fit-content;
    color: var(--button-color);
    transition: text-decoration-color var(--animation-speed) var(--animation-easing),
      color var(--animation-speed) var(--animation-easing);
  }

  .facets__clear-all-link:hover {
    --button-color: var(--color-primary-hover);

    color: var(--button-color);
    text-decoration-color: var(--button-color);
  }

  .facets:not(.facets--drawer) .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-remove__pill {
    .svg-wrapper,
    .swatch {
      flex-shrink: 0;
    }
  }

  .facets--horizontal .facets-remove {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:filter-remove-buttons */

/* START_SNIPPET:filters-toggle (INDEX:268) */
/* Facets - Toggle */
  .facets-toggle {
    --icon-offset: -3px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--minimum-touch-target);
    margin: var(--facets-margin);
    padding-block: var(--facets-inner-padding-block);
    padding-inline: var(--facets-inner-padding-inline);

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

  .facets-toggle__wrapper {
    margin-left: var(--icon-offset);
  }

  .facets-toggle__button {
    box-shadow: none;

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

  /* Filter count */
  .filter-count-bubble {
    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    line-height: normal;
    place-content: center;
    color: var(--color-foreground);
    border: var(--icon-stroke-width) solid var(--color-background);
  }

  .facets-mobile__title-wrapper .h3 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .facets-mobile__title-wrapper .filter-count-bubble {
    width: 22px;
    height: 22px;
  }

  .facets-mobile__title-wrapper .filter-count-bubble__text {
    font-size: var(--font-size--xs);
  }

  .filter-count-bubble__background {
    position: absolute;
    inset: 0;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    border-radius: var(--style-border-radius-50);
  }

  .filter-count-bubble__text {
    font-size: 11px;
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  .facets-toggle--no-filters {
    @media screen and (max-width: 749px) {
      /* stylelint-disable-next-line declaration-no-important */
      justify-content: unset !important;

      & > .facets-mobile-wrapper {
        width: 100%;
      }
    }
  }
/* END_SNIPPET:filters-toggle */

/* START_SNIPPET:floating-cart (INDEX:269) */
.floating-cart {
    position: fixed;
    top: calc(var(--page-margin) + env(safe-area-inset-top, 0px));
    right: calc(var(--page-margin) + 20px);
    z-index: var(--layer-sticky);

    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    appearance: none;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--style-border-radius-50);
    background-color: var(--color-background);
    box-shadow: var(--shadow-popover);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity var(--animation-values-slow), transform var(--animation-values-slow),
      visibility var(--animation-values-slow);

    .cart-bubble {
      top: 10px !important;
      right: -5px !important;
    }
  }

  .floating-cart .header-actions__cart-icon {
    display: flex;
  }

  body:has(#header-component[data-sticky-state='idle']):not(:has(.cart-drawer__dialog[open])) .floating-cart {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }

  @media (min-width: 750px) {
    .floating-cart {
      top: 20px;
    }
  }

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

    body:has(#header-component[data-sticky-state='idle']):not(:has(.cart-drawer__dialog[open])) .floating-cart {
      transform: none;
    }
  }
/* END_SNIPPET:floating-cart */

/* START_SNIPPET:free-products (INDEX:271) */
@media screen and (min-width: 1225px) {
    .product-details-free-products {
      padding: 16px;
    }
    .product-details-free-products__content-wrapper {
      gap: 50px;
    }

    .product-details-free-products__header {
        display: none !important;
    }
}

@media screen and (min-width: 750px) and (max-width: 1224px) {
    .product-details-free-products {
      padding: 12px;
    }
    .product-details-free-products__content-wrapper {
      gap: 50px;
    }

    .product-details-free-products__header {
        display: none !important;
    }
}


  @media screen and (max-width: 749px) {
    .product-details-free-products {
      padding: 8px;
    }
    .product-details-free-products__content-wrapper {
      gap: 8px;
    }
  }
  
  .product-details-free-products {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    width: 100%;

    background: #f3f8fe;
    border-radius: 4px;
  }

.product-details-free-products__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    height: 20px;
  }

  .product-details-free-products__header > svg {
    width: 20px;
    height: 20px;
    flex: none;
    flex-grow: 0;
  }

  .product-details-free-products__content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .product-details-free-products__text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    /*max-width: 181px;
    width: 100%;*/
  }

  .product-details-free-products__img-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;

    height: 47px;
  }

  .product-details-free-products__img {
    width: 50px;
    height: auto;
  }

  /* --- FONTS --- */
    @media screen and (min-width: 1225px) {
    .product-details-free-products__title {
      height: 18px;
      font-size: 14px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1224px) {
    .product-details-free-products__title {
      height: 18px;
      font-size: 12px;
    }
  }

  @media screen and (max-width: 749px) {
    .product-details-free-products__title {
      height: 18px;
      font-size: 12px;
    }
  }

  .product-details-free-products__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    /*line-height: 150%;*/
    line-height: 130%;

    color: #43334b;
    margin: 0px;
  }

  .product-details-free-products__text {
    height: 21px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;

    color: #43334b;
  }
/* END_SNIPPET:free-products */

/* START_SNIPPET:gift-card-recipient-form (INDEX:273) */
.recipient-form {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);

    display: flex;
    flex-direction: column;
    padding-bottom: var(--padding-2xl);
  }

  .recipient-form__send-to {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .gift-card-form-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    padding: 0;
    border: none;
  }

  .gift-card-form-option__button-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-width: auto;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .gift-card-form-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label input {
    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .recipient-fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: opacity 0.3s var(--animation-easing);
    padding-block-start: var(--padding-xl);
  }

  .recipient-fields[hidden] {
    display: none;
  }

  .field--send-on {
    display: flex;
    flex-direction: column;
  }

  .recipient-form__message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }

  .recipient-form-field-label {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    font-style: italic;
  }

  .recipient-fields__textarea {
    min-height: 5.5rem;
    overflow-y: auto;

    /* Space for the character count */
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  .recipient-fields__input {
    flex-grow: 1;
    transition: background-color var(--animation-speed) ease;
    padding: var(--input-padding);
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    text-align: left;
    font-size: var(--font-paragraph--size);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    &:autofill {
      background-color: var(--color-input-background);
      color: var(--color-input-text);
    }

    &:is(:focus) {
      outline-color: var(--color-input-background);
    }
  }

  /* Date picker calendar icon
   * Safari doesn't show the icon and Firefox correctly applies the color from the input field.
   * Webkit browsers need the mask-image trick to use the correct icon color.
   */
  .field--send-on .recipient-fields__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24' %3E%3Cg%3E%3Cpath d='M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-image: none;
    background-color: currentColor;
    mask-type: match-source;
  }

  /* For Webkit browsers - text cursor for input area */
  .field--send-on .recipient-fields__input::-webkit-datetime-edit {
    cursor: text;
  }

  .field--send-on .recipient-fields__input::-webkit-datetime-edit-year-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-month-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-day-field {
    /* Override the disabled color */
    color: var(--color-input-text);
  }

  /* Fallback for other browsers */
  .field--send-on .recipient-fields__input {
    cursor: text;
  }

  /* For Firefox - entire field is clickable, so show pointer */
  @supports (-moz-appearance: none) {
    .field--send-on .recipient-fields__input {
      cursor: pointer;
    }
  }
/* END_SNIPPET:gift-card-recipient-form */

/* START_SNIPPET:grid-density-controls (INDEX:274) */
.column-options-wrapper {
    --icon-offset: -3px;

    display: flex;
    gap: var(--gap-sm);
    min-width: fit-content;
    justify-content: flex-end;
    height: var(--minimum-touch-target);
    align-items: center;
    margin-right: var(--icon-offset);
  }

  .column-options-wrapper:only-child {
    margin-left: auto;
  }

  .facets__form-wrapper > .column-options-wrapper:first-child {
    margin-left: auto;
  }

  .facets .column-options-wrapper {
    display: none;

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

  .column-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    margin: 0;
    padding: 0;
    border: none;

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

  .column-options__option {
    display: none;
    position: relative;
  }

  .column-options__option:has(.column-picker-mobile--single),
  .column-options__option:has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options__option:has(.column-picker--default),
  .column-options__option:has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options__legend {
    padding: 0;
    margin: 0;
  }

  .column-options__option-input {
    /* this is a repeating pattern a bit with the variant picker buttons */

    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    cursor: pointer;
  }

  .column-picker {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    padding: var(--padding-2xs);
    border-radius: var(--style-border-radius-xs);
    transition: background-color var(--animation-speed) ease, color var(--animation-speed) ease;
  }

  .column-options__option:hover .column-picker {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .column-options__option-input:checked ~ .column-picker {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }
/* END_SNIPPET:grid-density-controls */

/* START_SNIPPET:group (INDEX:275) */
.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:276) */
@media screen and (min-width: 750px) {
    .cart-drawer__summary.cart-drawer__summary--drawer {
      padding-bottom: 16px !important;
    }
  }

  @media screen and (max-width: 749px) {
    .cart-drawer__summary.cart-drawer__summary--drawer {
      padding-bottom: 8px !important;
    }
  }

  .cart-drawer {
    --cart-drawer-padding: var(--padding-lg) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);
    --cart-font-size--2xs: var(--font-size--2xs);
    --cart-font-size--xs: var(--font-size--xs);
    --cart-font-size--sm: var(--font-size--sm);
    --cart-font-size--md: var(--font-size--md);
    --cart-font-size--2xl: var(--font-size--2xl);
  }

  .cart-drawer__dialog {
    /* The base .dialog-drawer animation runs at the global --animation-speed (0.125s) with
       ease-in-out, which reads as abrupt and linear on a full-height panel. Scope a slower,
       asymmetric motion to the cart drawer only: a soft-start curve in (no launch snap, eases
       out of the gate then decelerates to a settle), accelerate out (leave a touch quicker). */
    --cart-drawer-open-speed: 0.4s;
    --cart-drawer-open-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --cart-drawer-close-speed: 0.24s;
    --cart-drawer-close-ease: cubic-bezier(0.4, 0, 1, 1);

    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    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);
  }

  .cart-drawer__dialog.dialog-drawer[open] {
    animation: var(--dialog-drawer-opening-animation) var(--cart-drawer-open-speed) var(--cart-drawer-open-ease)
      forwards;
  }

  .cart-drawer__dialog.dialog-drawer.dialog-closing {
    animation: var(--dialog-drawer-closing-animation) var(--cart-drawer-close-speed) var(--cart-drawer-close-ease)
      forwards;
  }

  /* Fade the dim in/out with the panel — the base backdrop pops in instantly, which looks
     harsh once the slide is slower. Keep the base brightness shift running alongside. */
  .cart-drawer__dialog.dialog-modal[open]::backdrop {
    animation: cartDrawerBackdropIn var(--cart-drawer-open-speed) var(--cart-drawer-open-ease) forwards,
      backdropFilter var(--cart-drawer-open-speed) var(--cart-drawer-open-ease) forwards;
  }

  .cart-drawer__dialog.dialog-modal.dialog-closing::backdrop {
    transition: opacity var(--cart-drawer-close-speed) var(--cart-drawer-close-ease);
  }

  @keyframes cartDrawerBackdropIn {
    from {
      opacity: 0;
    }
  }

  /* The base theme never reduced-motion-guarded the drawer slide; close that gap here.
     getAnimations() returns [] with animation:none, so dialog.js's onAnimationEnd still
     resolves and the drawer opens/closes instantly. */
  @media (prefers-reduced-motion: reduce) {
    .cart-drawer__dialog.dialog-drawer[open],
    .cart-drawer__dialog.dialog-drawer.dialog-closing,
    .cart-drawer__dialog.dialog-modal[open]::backdrop {
      animation: none;
    }
  }

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

  .cart-drawer__inner {
    height: 100%;
  }

  .cart-drawer__content {
    padding: 0;
    background-color: #f3f8fe;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
  }

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

  .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 {
  }

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

  .cart-drawer__content .cart-drawer__items .cart-items__table-row:last-child {
    padding-bottom: 16px;
  }

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

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    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__summary.cart-drawer__summary--drawer {
    display: flex;
    row-gap: 0px !important;
    padding-inline: 0.5rem !important;
    flex-direction: column;

    margin-top: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

  .cart-drawer:not(:has(.cart-form)) .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cart-drawer__content .cart-drawer:not(:has(.cart-form)) .cart-items__wrapper {
    padding: 8px;
  }

  header-actions {
    display: flex;

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

  .header-actions__action {
    --button-color: var(--color-foreground);

    cursor: pointer;
    display: flex;
    justify-content: center;
  }

  .header-actions__action .svg-wrapper {
    height: 40px;
    width: 50px;
  }

  .header-actions__action svg {
    width: 24px;
    height: 24px;
  }

  .header-actions__cart-icon {
    --cart-bubble-size: 0px;
    --cart-bubble-top: 17.5px;
    --cart-bubble-right: 10px;

    position: relative;
  }

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

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

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

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

  .cart-drawer__heading .cart-bubble__text {
    color: var(--color-foreground);
    font-size: var(--font-size--xs);
  }

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

  .cart-bubble--animating .cart-bubble__text {
    animation: cartBubbleSlideIn var(--animation-speed) var(--animation-easing);
  }

  @keyframes cartBubbleBreathe {
    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.07);
    }
  }

  @keyframes cartBubbleGlow {
    0%,
    100% {
      box-shadow: 0 0 0 0 transparent;
    }

    50% {
      box-shadow: 0 0 0 3px var(--cart-pulse-glow);
    }
  }

  .header-actions__cart-icon--has-cart .cart-bubble {
    --cart-pulse-glow: rgb(238 90 67 / 22%);

    animation: cartBubbleBreathe 2.6s var(--animation-easing) infinite,
      cartBubbleGlow 2.6s var(--animation-easing) infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    .header-actions__cart-icon--has-cart .cart-bubble {
      animation: none;
    }
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-drawer (INDEX:277) */
.header__icon--menu {
    position: initial;
  }

  @media screen and (min-width: 750px) {
    .header--desktop header-menu + .header__drawer header-drawer {
      display: none;
    }
  }

  .menu-drawer-container .header__icon--summary {
    color: var(--color-foreground);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
  }

  .header__icon--summary .header-drawer-icon {
    margin: auto;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .header__drawer {
    display: flex;
    min-height: 60px;
    align-items: center;

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

  .header--compact .header__drawer {
    min-height: var(--minimum-touch-target);
  }

  .menu-drawer__navigation {
    padding: 0;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  details:not([open]) .header__icon--menu .header-drawer-icon--close {
    display: none;
  }

  details[open] .header__icon--menu .header-drawer-icon--close {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  details[open] .header__icon--menu .header-drawer-icon--open {
    display: none;

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

  .menu-drawer {
    position: fixed;
    transform: translateX(-100%);
    visibility: hidden;
    height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    z-index: var(--layer-menu-drawer);
    left: 0;
    top: 0;
    padding: 0;
    background-color: var(--color-background);
    overflow: auto;
    display: flex;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      width: 25rem;
    }

    .header__drawer--desktop & {
      height: 100vh;
    }
  }

  .menu-drawer:has(details[open]) {
    overflow: initial;
  }

  .menu-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    backdrop-filter: brightness(0.75);
    z-index: var(--layer-heightened);
    opacity: 0;
    transition: opacity var(--drawer-animation-speed) ease;

    .menu-open & {
      opacity: 1;
    }
  }

  .menu-drawer,
  details[open] > .menu-drawer__submenu {
    transition: transform var(--drawer-animation-speed) ease, visibility var(--drawer-animation-speed) ease,
      opacity var(--drawer-animation-speed) ease;
  }

  .menu-open > .menu-drawer,
  .menu-open > .menu-drawer__submenu:not(.menu-drawer__menu--childlist) {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    will-change: transform;
  }

  .menu-drawer__inner-container {
    position: relative;
    height: 100%;
  }

  .menu-drawer__navigation-container {
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: space-between;
    overflow-y: auto;
    height: 100%;
  }

  .menu-drawer__inner-submenu {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  .menu-drawer__nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu {
    --menu-drawer-inline-padding: calc(var(--padding-sm) + 7px);

    list-style: none;
    padding-inline: var(--drawer-padding);
    margin-inline: 0;
    margin-block-start: 0;
  }

  .menu-drawer__menu--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--padding-sm);
    padding-inline-end: var(--menu-drawer-inline-padding);
    padding-block-start: var(--padding-xs);
  }

  .menu-drawer__menu--childlist:not(.menu-drawer__menu--grid) {
    flex-grow: 1;
  }

  .menu-drawer__menu.has-submenu,
  .menu-drawer__menu--childlist:not(:has(.menu-drawer__animated-element)) {
    margin-block-end: var(--margin-xs);

    @media screen and (min-width: 750px) {
      margin-block-end: 2.5rem;
    }
  }

  .menu-drawer__list-item--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__list-item--deep:not(.menu-drawer__list-item--divider) .menu-drawer__menu {
    margin-block-start: -0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu {
    margin-block-start: -0.4rem;
  }

  .menu-drawer__menu-container--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__menu > .menu-drawer__list-item {
    display: flex;
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__list-item--deep .menu-drawer__list-item,
  .menu-drawer__list-item--flat .menu-drawer__list-item {
    min-height: auto;
  }

  .menu-drawer__menu .menu-drawer__list-item--flat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-block-end: var(--margin-md);
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat {
    margin-block-end: var(--margin-sm);

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

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat.menu-drawer__list-item--divider {
    margin-block-end: 0;
  }

  .menu-drawer__list-item--flat .menu-drawer__menu--childlist {
    width: 100%;
    padding-inline-start: 0;
  }

  .menu-drawer-container[open] .menu-drawer__animated-element {
    animation: menu-drawer-nav-open var(--drawer-animation-speed) ease-in-out;
    animation-delay: calc(var(--drawer-animation-speed) + (var(--menu-drawer-animation-index) - 1) * 0.1s);
    animation-fill-mode: backwards;
  }

  .menu-drawer__menu details,
  .menu-drawer__menu-item,
  .menu-drawer__menu accordion-custom {
    width: 100%;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item:not(.menu-drawer__menu-item--child) {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__menu-item--mainlist {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    justify-content: space-between;

    &:hover {
      color: var(--menu-top-level-font-color);
    }
  }

  .menu-drawer__menu-item--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-font-color);
    }
  }

  .menu-drawer__menu-item--child {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);

    &:hover {
      color: var(--menu-child-font-color);
    }
  }

  .menu-drawer__menu--childlist summary.menu-drawer__menu-item {
    display: flex;
    width: 100%;
    padding-inline-end: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu,
  .menu-drawer__menu--grandchildlist {
    padding-inline-start: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__list-item--deep.menu-drawer__list-item--divider .menu-drawer__menu {
    padding-block-end: 0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu--grandchildlist {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__menu-item {
    display: flex;
    padding: var(--padding-2xs) 0;
    position: relative;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu-item:has(> .menu-drawer__link-image) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  /* Fix alignment for collection image mode links without images in drawer */

  /* Target menu items in grids that have images */
  .menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image)) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__menu--grid:has(.menu-drawer__link-image)
    .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .menu-drawer__close-button {
    position: relative;
    right: auto;
    top: auto;
    width: fit-content;
    height: fit-content;
    padding: var(--padding-lg);
    will-change: transform;
  }

  .menu-drawer__back-button {
    display: flex;
    width: 100%;
    padding: var(--padding-md) var(--padding-xl);
    border: none;
    align-items: center;
    color: var(--color-foreground);
    background-color: transparent;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    overflow-x: hidden;
    line-height: 1.2;
    box-shadow: none;
  }

  .menu-drawer__menu-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /** Styles when the country selector is hidden */
  .menu-drawer .language-selector:not(.menu-drawer__submenu *) {
    width: fit-content;
    padding-inline-start: 0;

    .localization-form__select {
      text-align: left;
    }
  }

  .menu-drawer__menu-item > .svg-wrapper {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding-block: var(--padding-lg);
    padding-inline-start: var(--padding-xl);
    flex-shrink: 0;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item > .svg-wrapper {
    padding-block: var(--padding-md);
  }

  .menu-drawer svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__submenu {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100dvh;
    left: 0;
    background-color: var(--color-background);
    z-index: var(--layer-flat);
    transform: translateX(-5%);
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
  }

  .menu-drawer__back-button > .svg-wrapper {
    margin-right: var(--padding-md);
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__utility-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-block: auto var(--padding-sm);
    margin-inline-start: var(--padding-xl);
    background-color: rgb(var(--color-foreground) 0.03);
  }

  .menu-drawer__account {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
    text-decoration: none;
    height: 44px;
    font-size: 1.4rem;
    color: rgb(var(--color-foreground));
  }

  .menu-drawer__account svg {
    height: var(--icon-size-sm);
    width: var(--icon-size-sm);
  }

  .menu-drawer__account shop-user-avatar {
    --shop-avatar-size: 2.4rem;

    margin-right: 0.55rem;
    margin-left: -0.45rem;
  }

  .menu-drawer__link-image,
  .menu-drawer__featured-product-image,
  .menu-drawer__featured-collection-image,
  .menu-drawer__featured-collection-link::before {
    border-radius: var(--menu-image-border-radius);
  }

  @keyframes menu-drawer-nav-open {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-0.5rem);
    }

    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes menu-drawer-subnav-open {
    0% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-1rem);
    }
  }
/* END_SNIPPET:header-drawer */

/* START_SNIPPET:jumbo-text (INDEX:286) */
.jumbo-text__container {
    width: 100%;
  }

  footer .jumbo-text__container {
    pointer-events: none;
  }

  jumbo-text {
    display: block;
    font-family: var(--font-family, inherit);
    font-style: var(--font-style, normal);
    color: var(--color, inherit);
    font-weight: var(--font-weight, inherit);
    letter-spacing: var(--letter-spacing, -0.02em);
    line-height: var(--line-height, 1);
    opacity: 0;
    text-align: var(--text-align);
    text-box: var(--text-trim, trim-end cap text);
    text-transform: var(--text-transform, none);
    transition: opacity 0.3s ease;
    white-space: pre;
    width: 100%;
    will-change: font-size;
    margin-left: var(--margin-left-nudge, 0);
    margin-right: var(--margin-right-nudge, 0);
    overflow: visible;
  }

  jumbo-text.ready {
    opacity: 1;
  }

  jumbo-text[data-cap-text='true'] {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    text-box-edge: cap text;
  }

  .jumbo-text-space {
    display: inline-flex;
    width: 0.5ch;
  }

  :is(.jumbo-text-char, .jumbo-text-line) {
    display: inline-flex;
  }

  @media (prefers-reduced-motion: no-preference) {
    /* Blur effect */
    [data-text-effect='blur'] {
      filter: blur(20px);
      opacity: 0.5;
      scale: 1.05;
      transition: filter 1.6s var(--animation-timing-fade-in), opacity 1.3s var(--animation-timing-fade-in),
        scale 1.6s var(--animation-timing-fade-in);
    }

    .jumbo-text-visible[data-text-effect='blur'] {
      filter: blur(0);
      opacity: 1;
      scale: 1;
    }

    /* Reveal effect */
    .ready[data-text-effect='reveal'],
    .ready[data-text-effect='reveal'] .jumbo-text-line {
      overflow: hidden;
    }

    .ready[data-text-effect='reveal'] .jumbo-text-char {
      transform: translateY(100%);
    }

    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-char {
      transition: transform 0.5s var(--animation-timing-fade-in) calc(var(--line-index) * 0.05s);
      transform: translateY(0);
    }

    .jumbo-text-visible[data-text-effect='reveal'],
    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-line {
      overflow: visible;
      transition: overflow 0s linear 0.75s;
    }
  }
/* END_SNIPPET:jumbo-text */

/* START_SNIPPET:list-filter (INDEX:289) */
.facets input:checked + label {
    font-weight: 500;
  }

  .facets .checkbox .icon-checkmark {
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .facets .checkbox:not(:has(.checkbox__input:disabled)):hover .icon-checkmark {
    border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .facets .checkbox:has(.checkbox__input:checked):not(:has(.checkbox__input:disabled)):hover .icon-checkmark {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-85));
  }

  .facets .checkbox:not(:has(.checkbox__input:disabled)):hover .checkbox__label-text {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-90));
  }

  .facets .checkbox .checkbox__label-text {
    transition: color 0.2s ease, font-weight 0.2s ease;
  }

  /* Pill style */
  .facets__pill-label {
    --pill-label-padding-inline: var(--padding-xs);
    --pill-label-border-radius: var(--style-border-radius-md);
    --pill-label-border-width: var(--variant-picker-button-border-width);
    --pill-label-height: var(--button-size-md);
    --pill-label-focus-outline-color: var(--color-foreground);
    --pill-label-color: var(--color-foreground);
    --pill-label-color-rgb: var(--color-foreground-rgb);
    --pill-label-background-color: var(--color-background);
    --pill-label-background-color-rgb: var(--color-background-rgb);
    --pill-label-border-opacity: var(--facets-low-opacity);

    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 var(--pill-label-border-width) rgb(var(--pill-label-color-rgb) / var(--opacity-10-25));
    border-radius: var(--pill-label-border-radius);
    height: var(--pill-label-height);
    width: 100%;
    padding-inline: var(--pill-label-padding-inline);
    color: rgb(var(--pill-label-color-rgb));
    background-color: rgb(var(--pill-label-background-color-rgb));
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing),
      background-color var(--animation-speed) var(--animation-easing);
    outline-color: var(--pill-label-focus-outline-color);

    &:hover {
      --pill-label-border-opacity: 100%;
    }
  }

  .facets__pill-input {
    &:checked + .facets__pill-label {
      --pill-label-color-rgb: var(--color-background-rgb);
      --pill-label-background-color-rgb: var(--color-foreground-rgb);
      --pill-label-border-opacity: 0;

      font-weight: 500;
    }

    &:disabled + .facets__pill-label {
      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      &:hover {
        --pill-label-border-opacity: var(--facets-low-opacity);
      }
    }
  }

  .facets__status-wrapper {
    display: flex;
    align-items: center;
  }

  .facets--drawer .facets__status-wrapper {
    @media screen and (max-width: 749px) {
      gap: var(--gap-3xs);
    }
  }

  .facets--vertical .facets__status-wrapper {
    gap: var(--gap-xs);
  }

  .facets--horizontal .facets__status-wrapper {
    gap: 0;
  }

  .facets__pill-input:disabled + .facets__pill-label svg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--style-border-radius-md);
  }

  .facets__pill-label svg line {
    stroke-width: 1.5px;
    stroke: rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
  }

  .facets__pill-wrapper {
    position: relative;
  }

  .facets__pill-input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  /* Swatches */
  .facets__status--swatches {
    display: none;
  }

  .facets__swatch-wrapper {
    display: flex;
  }

  .facets__inputs-list--swatches .variant-option__button-label {
    --color-variant-text: var(--color-foreground);
  }

  .facets__inputs-list--swatches {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    gap: var(--gap-sm);
  }

  .facets--vertical .facets__inputs-list--swatches .facets__inputs-list-item {
    display: flex;
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    --columns: 2;

    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option--swatches {
    cursor: pointer;
    overflow: visible;

    &.variant-option--swatches-disabled,
    &:has(input:disabled) {
      cursor: not-allowed;
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid label {
    cursor: pointer;
    word-break: break-word;
    white-space: normal;

    .variant-option--swatches-disabled &,
    .variant-option--swatches:has(input:disabled) & {
      cursor: not-allowed;
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch {
    align-items: center;
    overflow: visible;
    justify-content: flex-start;
    display: flex;
    width: 100%;
    flex-basis: unset;
    gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label:has(:checked) {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-background-rgb));
    font-weight: 500;
    transition: font-weight 0.2s ease;
  }

  .facets .variant-option--swatches {
    --options-border-radius: var(--variant-picker-swatch-radius);

    width: auto;
  }

  .facets--horizontal .facets__status--swatches {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .facets--horizontal .sorting-filter .facets__status {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets__status--swatches .swatch {
    width: calc(var(--variant-picker-swatch-width) / 1.5);
    height: calc(var(--variant-picker-swatch-height) / 1.5);
  }

  .facets__status--swatches .swatch + .swatch {
    margin-left: calc(var(--variant-picker-swatch-width) / -3);
    outline: 1px solid rgb(var(--color-background-rgb));
  }

  .variant-option--images {
    position: relative;
  }

  .variant-option--images {
    --image-facet-border-width: var(--variant-picker-button-border-width);
    --image-facet-border-opacity: var(--facets-low-opacity);
    --image-facet-border-radius: var(--style-border-radius-xs);

    border-radius: var(--image-facet-border-radius);
    box-shadow: inset 0 0 0 var(--image-facet-border-width)
      rgb(var(--color-foreground-rgb) / var(--image-facet-border-opacity));

    &:hover:not(:has(input:disabled)),
    &:has(input:checked) {
      --image-facet-border-opacity: 100%;
    }

    &:has(input:checked) {
      font-weight: 500;
      transition: font-weight 0.2s ease;
    }

    &:has(input:checked):hover {
      --image-facet-border-width: calc(var(--variant-picker-button-border-width) + 0.5px);
    }

    &:has(input:focus-visible) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: var(--focus-outline-offset);
    }

    &:has(input:disabled),
    &:has(input:disabled):hover {
      --image-facet-border-opacity: 0;

      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      img {
        opacity: var(--disabled-opacity);
      }

      input,
      label,
      .facets__image-label {
        cursor: not-allowed;
      }

      .facets__image-wrapper {
        border: var(--style-border-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-30));
        border-radius: var(--image-facet-border-radius);
      }
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--images {
    display: grid;
    grid-template-columns: repeat(var(--image-columns), 125px);
    gap: var(--gap-sm);
  }

  .facets--drawer .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(3, 1fr);

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

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(2, 1fr);
  }

  .facets--drawer .facets__inputs-list--images {
    padding-top: var(--padding-xs);
  }

  .facets__image-wrapper {
    aspect-ratio: 1/1;
    width: 100%;
    padding: var(--padding-xs);
    position: relative;
    overflow: hidden;
  }

  .facets__image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: calc(var(--border-radius) / 2);
  }

  /* Position disabled-svg */
  .variant-option--images svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    stroke-width: var(--border-width);
    stroke: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  /* Position label text and handle overflow */
  .facets__inputs-list-item,
  .variant-option--images {
    min-width: 0;
  }

  .facets__image-label {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-block-end: var(--padding-xs);
    cursor: pointer;

    .variant-option--images:has(input:disabled) & {
      cursor: not-allowed;
    }
  }

  .facets__inputs-list--swatches .variant-option__button-label:hover:not(:has(input:disabled)) {
    font-weight: 500;
  }

  .variant-option--images:not(:has(input:disabled)) .facets__image-label:hover {
    font-weight: 500;
  }
/* END_SNIPPET:list-filter */

/* START_SNIPPET:localization-form (INDEX:290) */
/* Localization */
  localization-form-component {
    display: flex;
    width: var(--width, auto);

    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  localization-form-component[data-show-filter='false'] .country-selector-form__wrapper {
    padding-block-start: var(--padding-xs);
  }

  .localization-form {
    width: 100%;
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)) {
    --button-color: var(--color-primary);
    --button-background-color: var(--language-button-background-color, var(--color-background));
    --button-border-color: var(--language-button-border-color, var(--color-border));

    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)):hover,
  .localization-form__list-item:hover,
  .localization-form__list-item:focus {
    --button-color: var(--color-primary-hover);

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

  .localization-form__list-item[aria-current='true'] {
    --button-color: var(--color-primary-active);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-10));
  }

  .localization-form__list-item-disabled {
    pointer-events: none;
  }

  .localization-form__list-item:focus-visible {
    outline: none;
  }

  localization-form-component .localization-selector {
    display: flex;
    align-items: center;
    gap: var(--margin-2xs);
  }

  localization-form-component .country-filter__search-icon {
    left: 8px;
    right: auto;
    color: var(--color-foreground-muted);
    pointer-events: none;
  }

  .country-filter__search-icon .svg-wrapper svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .disclosure {
    width: 100%;
  }

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

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

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

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

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

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

  .localization-form__list {
    position: relative;
    width: 100%;
    padding-block: 0 var(--padding-xs);
    font-size: var(--font-size-lg);
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    white-space: nowrap;

    /* Hide scrollbar which would cause extra right padding in Safari */
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

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

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

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

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

  .localization-form__list-item:not([hidden]) {
    margin-block-end: var(--margin-3xs);
    display: flex;
    gap: var(--margin-sm);
    padding: 8px;
    border-radius: 8px;
    line-height: var(--font-line-height-md);
    align-items: center;
    text-align: start;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);

    .country {
      flex: 1;
      color: var(--color-foreground);
    }

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

    &[aria-current='true'] {
      .country {
        font-weight: 500;
      }
    }
  }

  .localization-form__list-item#no-results-message {
    grid-template-columns: 1fr;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .is-searching .localization-form__list-item .country {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .localization-form__list-item .country mark {
    font-weight: 500;
    background: none;
    color: var(--color-foreground);
  }

  .country-filter {
    position: relative;
    padding: var(--padding-xs);
    border-bottom: var(--style-border-width) solid transparent;
    transition: border-color var(--animation-values);
  }

  .country-filter.is-scrolled {
    border-color: var(--color-border);
  }

  .drawer-localization .country-filter {
    padding-block: 8px;
  }

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

  .country-selector-form__wrapper {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
  }

  .language-selector {
    display: flex;
    gap: var(--gap-xs);
    padding: var(--padding-md) var(--padding-lg);
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .language-selector__label {
    flex-shrink: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .localization-form__select {
    border: none;
    color: var(--color-foreground);
    appearance: none;
    background-color: var(--color-input-background);
    padding-block: var(--padding-3xs);
    padding-inline: var(--padding-xs) calc(var(--icon-size-xs) + var(--padding-xs));
    text-align: right;
    cursor: pointer;
    max-width: 40vw;
    text-overflow: ellipsis;

    &:focus-visible {
      outline: var(--focus-outline-width) solid currentcolor;
    }

    &:focus {
      outline: none;
    }
  }

  #header-component[transparent] localization-form-component .localization-form .localization-form__select {
    background-color: transparent;
  }

  .localization-form__select option {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    text-align: center;
  }

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

  .language-selector .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .language-selector--collapse-space {
    padding-inline-end: var(--padding-2xs);
  }

  .language-selector--collapse-space .localization-form__select {
    padding-inline-end: var(--icon-size-xs);
  }

  .language-selector--collapse-space .svg-wrapper.icon-caret {
    right: 0;
  }

  .localization-form .icon-checkmark {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .localization-form .svg-wrapper.icon-checkmark {
    visibility: hidden;
  }

  .localization-form__list-item[aria-current='true'] .svg-wrapper.icon-checkmark {
    visibility: visible;
  }

  .country-filter__input {
    width: 100%;
    height: 44px;
    font-size: var(--font-size-lg);
    padding: var(--padding-md) var(--padding-lg) var(--padding-md) calc(var(--margin-md) + var(--padding-xl));
    border: 1px solid var(--color-foreground);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    outline-offset: -1px;

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

  .country-filter__input::placeholder {
    color: inherit;
  }

  .country-filter .field {
    position: relative;
  }

  .country-filter .field__label {
    font-size: var(--font-size-lg);
    left: var(--margin-2xl);
    top: var(--margin-xl);
    pointer-events: none;
    position: absolute;
  }

  .country-filter__input:focus ~ .field__label,
  .country-filter__input:not(:placeholder-shown) ~ .field__label,
  .country-filter__input:-webkit-autofill ~ .field__label {
    font-size: var(--font-size-xs);
    top: var(--margin-xs);
  }

  .country-filter .field__button:not([hidden]) {
    display: flex;
    height: fit-content;
    position: absolute;
    padding: 0;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    background-color: transparent;
    color: var(--color-input-text);
    border: 0;
  }

  input[type='search']::-webkit-search-cancel-button {
    appearance: none;
  }

  .country-selector__close-button {
    display: none;
  }

  .drawer-localization .drawer-localization__button {
    display: flex;
    padding: 0;
    position: relative;
    text-decoration: none;
    height: 44px;

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

  .drawer-localization .drawer-localization__button .icon-caret {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: var(--padding-xl) var(--padding-xl) var(--padding-xl) var(--padding-xs);
  }

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

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

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

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

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

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

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

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

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

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

  .dropdown-localization:not(dropdown-localization-component) .language-selector,
  .menu-drawer__localization:not(drawer-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }

  .menu-drawer__localization .language-selector.h5 {
    padding-inline-start: 0;
  }

  .header__column .localization-form__select {
    background-color: var(--header-bg-color);
  }

  .drawer-localization {
    display: contents;
    color: var(--color-foreground);
  }

  .drawer-localization localization-form-component {
    position: relative;
    height: 100%;
  }

  .drawer-localization .mobile-localization,
  .drawer-localization .drawer-localization__button--label {
    display: flex;
    gap: var(--gap-xs);
    margin-block: 0;
    align-items: center;
  }

  .drawer-localization__button--label.h6 {
    font-family: var(--menu-localization-font);
  }

  .drawer-localization img {
    width: var(--icon-size-sm);
  }

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

  .drawer-localization summary.is-disabled {
    pointer-events: none;
  }

  .drawer-localization .localization-wrapper {
    width: 100%;
  }

  .drawer-localization .localization-form {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .drawer-localization .localization-form > * {
    padding-inline: var(--padding-xl);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret {
    transform: translateY(-50%) rotate(0deg);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret svg {
    transform: none;
  }
/* END_SNIPPET:localization-form */

/* START_SNIPPET:media (INDEX:291) */
.media-block {
    overflow: hidden;
    position: relative;

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

  .media-block__media {
    height: var(--media-height-mobile, auto);
    object-fit: var(--image-position, 'cover');
    object-position: center center;
    width: 100%;

    @media screen and (min-width: 750px) {
      height: 100%;
      position: absolute;
    }
  }

  deferred-media[class].media-block__media
    :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
    object-fit: var(--video-position, 'cover');
  }

  /* This is to support corner radius on video and align the video to the center of the block */
  .media-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 749px) {
      --media-height-mobile: auto;
    }
  }
/* END_SNIPPET:media */

/* START_SNIPPET:overlay (INDEX:298) */
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }
/* END_SNIPPET:overlay */

/* START_SNIPPET:predictive-search-products-list (INDEX:300) */
.predictive-search-results__products {
    padding-inline: var(--padding-xl);
  }

  .recently-viewed-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    transform: translateY(0);
  }

  .recently-viewed-wrapper.removing {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .predictive-search-results__clear.button-unstyled {
    color: var(--color-foreground);
    opacity: 0.5;
    transition: opacity var(--animation-speed-medium) var(--animation-easing);
    padding: 0;
    margin-left: var(--margin-sm);

    &:hover {
      opacity: 1;
    }
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .recently-viewed-wrapper > * {
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(1) {
    animation-delay: 30ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(3) {
    animation-delay: 90ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(4) {
    animation-delay: 120ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(n + 5) {
    animation-delay: 150ms;
  }

  .predictive-search-results__wrapper-products {
    animation-delay: 50ms;
  }
/* END_SNIPPET:predictive-search-products-list */

/* START_SNIPPET:predictive-search-resource-carousel (INDEX:301) */
.predictive-search-results__wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block-end: var(--padding-sm);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--padding-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-results__wrapper slideshow-slides {
    --gutter-slide-width: var(--padding-xl);

    /* Add padding to prevent hover animations from being clipped in slideshow
       15px accommodates:
       - Scale effect (9px on each side from 1.03 scale)
       - Lift effect (4px upward movement)
       - Shadow (15px spread with -5px offset)
       Using 16px for better alignment with our spacing scale */
    padding-block: var(--padding-xl);
    margin-block: calc(-1 * var(--padding-xl));
    gap: var(--gap-md);
  }

  .predictive-search-results__resource-header {
    display: flex;
    padding-inline: var(--padding-xl);
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }

  .predictive-search-results__resource-header .svg-wrapper {
    width: var(--icon-size-xs);
  }

  .predictive-search-results__wrapper-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block-end: var(--padding-sm);
    gap: var(--gap-md);
    transition: height var(--animation-speed-medium) var(--animation-easing);

    @container (min-width: 550px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search-results__wrapper-products:last-child {
    padding-block-end: var(--padding-lg);

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

  .predictive-search-results__resource-header .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header:has(slideshow-controls) .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header slideshow-controls {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }
/* END_SNIPPET:predictive-search-resource-carousel */

/* START_SNIPPET:predictive-search (INDEX:302) */
predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

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

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

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

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

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

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

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

    /* Firefox */
    scrollbar-width: none;

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

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

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

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

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

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

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

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

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

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

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

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

  .predictive-search-results__inner {
    --title-font-size: var(--font-size--md);
    --title-margin-block: var(--margin-xs);
    --list-item-padding-block: var(--padding-sm);

    flex-grow: 1;
    overflow-y: auto;
    padding-block: var(--padding-lg);
    container-type: inline-size;
    color: var(--color-foreground);
  }

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

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

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

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

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

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

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

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    background: transparent;
    color: var(--color-foreground);
    opacity: 1;
    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 (max-width: 749px) {
      margin-right: var(--margin-md);
    }
  }

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

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

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:predictive-search */

/* START_SNIPPET:price-filter (INDEX:303) */
/* Price filter */
  .price-facet {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
  }

  .facets__inputs-wrapper.price-facet__inputs-wrapper {
    flex-wrap: nowrap;
  }

  .price-facet__field {
    width: 50%;
    flex-grow: 0;
  }

  @container (max-width: 199px) {
    .facets__inputs-wrapper.price-facet__inputs-wrapper {
      flex-wrap: wrap;
      width: 100%;
    }

    .price-facet__inputs-wrapper .price-facet__field {
      width: 100%;
    }
  }

  .facets .facets__inputs-wrapper.price-facet__inputs-wrapper {
    padding: var(--style-border-width-inputs);
    gap: calc(var(--gap-sm) + (var(--style-border-width-inputs) * 2));
  }

  .facets--horizontal .facets__panel-content:has(.price-facet) {
    min-width: 360px;
  }

  .facets--horizontal .facets__inputs-wrapper.price-facet__inputs-wrapper {
    @media screen and (min-width: 750px) {
      padding: calc(var(--padding-md) + var(--style-border-width-inputs));
    }
  }

  .price-facet__input {
    width: 100%;
    text-align: right;
    padding-left: calc(2.5 * var(--input-padding-x));
  }

  .price-facet__input::placeholder {
    color: var(--facets-input-label-color);
  }

  .price-facet__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-paragraph--size);
  }

  .price-facet__highest-price {
    padding: var(--padding-xs) 0 var(--padding-sm);
  }

  .facets--horizontal .price-facet__highest-price {
    padding: 0 var(--padding-md) var(--padding-xs);
  }

  .field__label.price-facet__label {
    top: 0;
    left: 0;
    color: var(--facets-input-label-color);
    padding: var(--input-padding-y) var(--input-padding-x);
    transform: none;
  }
/* END_SNIPPET:price-filter */

/* START_SNIPPET:product-card-badges (INDEX:305) */
@media screen and (min-width: 750px) {
    .newbadge--mobile {
      display: none;
    }
  }

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

  .product-badges {
    --badge-inset: max(var(--padding-xs), calc((var(--border-radius) + var(--padding-xs)) * (1 - cos(45deg))));

    position: absolute;
    z-index: var(--layer-flat);
  }

  .product-badges--bottom-left {
    bottom: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-left {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-right {
    /* top: calc(var(--badge-inset) + var(--padding-block-start)); */
    /* right: calc(var(--badge-inset) + var(--padding-inline-start)); */
    top: 0;
    right: 0;
    max-width: 43%;
  }

  .product-badges__badge {
    --badge-font-size: var(--font-size--xs);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: var(--color-foreground);
    background: linear-gradient(48.59deg, #ff8c21 0%, #f5576e 100%);
    font-size: var(--badge-font-size);
    font-family: var(--badge-font-family);
    font-weight: var(--badge-font-weight);
    text-transform: var(--badge-text-transform);
    border-radius: 0 16px 0 16px;
  }

  .product-badges__badge--rectangle {
    /*padding-block: var(--badge-rectangle-padding-block);
    padding-inline: var(--badge-rectangle-padding-inline);*/
  }
/* END_SNIPPET:product-card-badges */

/* START_SNIPPET:product-card (INDEX:307) */
product-card-link,
  :not(product-card-link) product-card {
    width: 100%;
  }

  .product-card__placeholder-image svg {
    height: 100%;
  }

  @media screen and (max-width: 749px) {
    .product-card slideshow-arrows .slideshow-control {
      display: none;
    }
  }

  /* Hide the variant swatches for product cards that show a swatches variant picker */
  :is(.product-card):has(swatches-variant-picker-component) .quick-add .variant-option--swatches {
    display: none;
  }

  /* Hide "Add" button for single option product cards that show a swatches variant picker */
  :is(.product-card:not([data-no-swatch-selected])):has(.quick-add__product-form-component--single-option):has(
      swatches-variant-picker-component
    )
    .quick-add__button--choose {
    display: none;
  }

  /* Hide "Add" button for single option product cards that show a swatches variant picker */
  :is(.product-card[data-no-swatch-selected]):has(.quick-add__product-form-component--single-option):has(
      swatches-variant-picker-component
    )
    add-to-cart-component {
    display: none;
  }

  /* Hide "add" button for multi-variant product cards that don't show a swatches variant picker */
  :is(.product-card):has(.quick-add__product-form-component--multi-variant):not(:has(swatches-variant-picker-component))
    .quick-add__button--add {
    display: none;
  }

  /* Hover effect for single variant product cards and product blocks */

  /* stylelint-disable selector-max-specificity */
  :is(.product-card):has(.quick-add__product-form-component--single-variant) .card-gallery:hover {
    & .quick-add__button--choose {
      display: none;
    }

    & .quick-add__button--add {
      display: grid;
    }
  }

  .product-card[data-no-swatch-selected] slideshow-component[data-generic-media-size='1'] slideshow-arrows {
    display: none;
  }

  .product-card[data-no-swatch-selected]
    slideshow-component[data-generic-media-size='1']
    slideshow-arrows:has(+ slideshow-slides slideshow-slide[variant-image]:not([hidden])) {
    display: flex;
  }

  .product-card .variant-option__swatch svg {
    display: none;
  }

  .product-card [data-available-count='0'] ~ svg {
    display: block;
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-grid (INDEX:308) */
.product-grid {
    --product-grid-gap: var(--product-grid-gap-mobile);

    isolation: isolate;

    @media screen and (min-width: 750px) {
      --product-grid-gap: var(--product-grid-gap-desktop);
    }
  }

  .product-grid slideshow-arrows .slideshow-control {
    display: none;

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

  /* This triggers iOS < 16.4 */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /* Force aspect ratio to auto for iOS < 16.4 since it's not compatible with the infinite pagination */
    .product-grid .product-media,
    .product-grid .product-media-container {
      aspect-ratio: auto;
    }
  }

  .main-collection-grid {
    padding: var(--grid--margin--mobile);

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

  .main-collection-grid__empty {
    padding-block: var(--padding-6xl);
    padding-inline: var(--page-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--padding-sm);
  }

  .main-collection-grid__empty-title {
    margin: 0;
  }

  .collection-wrapper--full-width .main-collection-grid__title {
    margin-left: var(--page-margin);
  }

  .collection-wrapper--full-width-on-mobile .main-collection-grid__title {
    @media screen and (max-width: 749px) {
      margin-left: var(--page-margin);
    }
  }
/* END_SNIPPET:product-grid */

/* START_SNIPPET:product-media (INDEX:309) */
.product-media {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
    min-height: 0;
    min-width: 0;
  }

  .product-media__image {
    object-position: var(--focal-point, center center);
  }

  /*** Media border-radius feature ****/
  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-container,
    .media-gallery--grid .product-media > * {
      border-radius: var(--media-radius, 0);
      overflow: hidden;
    }

    /* When the CAROUSEL is on the LEFT side */
    .product-information:not(.product-information--media-right)
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    /* When the CAROUSEL is on the RIGHT side */
    .product-information.product-information--media-right
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    /* When the GRID is on the LEFT side */
    .product-information:not(.product-information--media-right) {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(odd)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media
        > * {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }

    /* When the GRID is on the RIGHT side */
    .product-information.product-information--media-right {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(even)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(odd))
        .product-media
        > * {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
    }
  }

  ::view-transition-old(gallery-item),
  ::view-transition-new(gallery-item) {
    animation-duration: 0ms;
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:quantity-selector-dropdown (INDEX:312) */
.quantity-selector--quantity-dropdown {
    color: unset;
    background-color: unset;
    border: unset;
}

.quantity-dropdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 8px 8px 24px;
    gap: 12px;
    width: 76px;
    height: 40px;
    border: 2px solid #43334B;
    border-radius: 64px;
    /*background-color: #f3f8fe;*/

    z-index: 2;
    position: relative;
    background: unset;
}

.quantity-selector.quantity-selector--quantity-dropdown>div>svg {
  z-index: 0;
}

.quantity-dropdown > option {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    
    color: #43334B;
}

.quantity-selector .quantity-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'><path d='M1.41 0L6 4.58L10.59 0L12 1.41L6 7.41L0 1.41L1.41 0Z' fill='%2343334B'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center; 
  background-size: 0.6rem;
  background-position-y: 16.29px;
  padding-right: 2rem; 
}
/* END_SNIPPET:quantity-selector-dropdown */

/* START_SNIPPET:quick-add-modal (INDEX:314) */
.quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    height: fit-content;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 750px) {
      position: fixed;
      display: block;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 750px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
  }

  .quick-add-modal__close:active {
    transform: scale(0.8);
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    max-width: var(--wide-content-width);
    overflow-y: auto;
    max-height: 100vh;

    @media screen and (max-width: 750px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
    /* Two column, small first image */
    .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
    .product-media-container:nth-of-type(odd)
    .product-media > *,
    /* Two column, large first image */
    .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
      .product-media-container:is(:first-of-type, :nth-of-type(even))
      .product-media > *,
      /* Carousel */
    .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 750px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 750px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .variant-picker__form {
    display: block;
  }

  .quick-add-modal__content .variant-option + .variant-option {
    margin-top: var(--padding-lg);
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 750px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      overflow-y: auto;
      max-height: 100%;
      height: 100%;
    }
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }

  .quick-add-modal__content .product-details .variant-picker {
    --product-swatches-padding-block-end: 0px;

    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding-block-end: calc(
      var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width)
    );
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    /* Prevent overlap between title and close button */
    padding-inline: 0 calc(var(--minimum-touch-target) / 2);
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: min(var(--gap-2xl), var(--gap));
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }

    .quick-add-modal__content .media-gallery--grid .product-media-container:first-child {
      border-top-right-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media-container:last-child {
      border-bottom-right-radius: var(--style-border-radius-popover, 0);
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding: var(--padding-2xl);
    max-height: 100%;
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 750px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media slideshow-controls {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal */

/* START_SNIPPET:quick-add (INDEX:315) */
/* Quick Add */
  .quick-add {
    --quick-add-offset: var(--padding-sm);
    --quick-add-top: calc(var(--quick-add-offset) + var(--padding-block-start));
    --quick-add-right: calc(var(--quick-add-offset) + var(--padding-inline-end));
    --quick-add-bottom: calc(var(--quick-add-offset) + var(--padding-block-end));
    --quick-add-left: calc(var(--quick-add-offset) + var(--padding-inline-end));

    position: absolute;
    display: var(--quick-add-mobile-display, none);
    flex-direction: column;
    justify-content: flex-end;
    inset: max(var(--quick-add-top), calc((var(--border-radius) + var(--quick-add-top)) * (1 - cos(45deg))))
      max(var(--quick-add-right), calc((var(--border-radius) + var(--quick-add-right)) * (1 - cos(45deg))))
      max(var(--quick-add-bottom), calc((var(--border-radius) + var(--quick-add-bottom)) * (1 - cos(45deg))))
      max(var(--quick-add-left), calc((var(--border-radius) + var(--quick-add-left)) * (1 - cos(45deg))));
    width: auto;
    height: auto;
    z-index: var(--layer-raised);
    cursor: default;
    pointer-events: none;

    @media screen and (min-width: 750px) {
      --quick-add-offset: var(--padding-md);

      display: var(--quick-add-display, flex);
    }
  }

  .quick-add .variant-option__button-label input[data-option-available='false'] {
    cursor: not-allowed;
  }

  .quick-add[class*='color-scheme-'] {
    background-color: transparent;
  }

  .quick-add__button {
    display: grid;
    padding: var(--padding-xs);
    align-items: center;
    background-color: var(--color-background);
    color: var(--color-foreground);
    border-color: transparent;
    box-shadow: var(--shadow-popover);
    pointer-events: all;
    position: relative;
    overflow: hidden;
    border-radius: 100px;

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

    .quick-add[stay-visible] & {
      display: grid;
    }
  }

  .quick-add__button .add-to-cart-text {
    gap: 0;
    line-height: 1;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    animation: none;

    @media screen and (min-width: 750px) {
      /* offset button padding to show a round button in a collapsed state */
      margin-inline: calc(var(--padding-sm) * -1);
      padding-inline: var(--padding-xs);
    }
  }

  .quick-add__button .add-to-cart-text--added {
    position: relative;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    justify-self: end;
    line-height: 1;

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

  .quick-add__button .add-to-cart-text__content {
    width: 0;
    opacity: 0;
    transform: translateX(1em);
    transition: width var(--animation-speed) ease-in-out, opacity var(--animation-speed) ease-in-out,
      transform var(--animation-speed) ease-in-out;
    interpolate-size: allow-keywords;
    will-change: width, opacity, transform;
  }

  @container (min-width: 99px) {
    .quick-add[stay-visible] .add-to-cart-text,
    .quick-add__button:is(:focus, :hover) .add-to-cart-text {
      gap: var(--gap-2xs);

      @media screen and (min-width: 750px) {
        /* offset button padding to show a round button in a collapsed state */
        margin-inline: 0;
        padding-inline: 0;
      }
    }

    .quick-add[stay-visible] .add-to-cart-text__content,
    .quick-add__button:is(:focus, :hover) .add-to-cart-text__content {
      width: fit-content;
      opacity: 1;
      transform: translateX(0);
    }
  }

  .quick-add__button.atc-added .add-to-cart-text {
    opacity: 0;
  }

  .quick-add__button.atc-added .add-to-cart-text--added {
    opacity: 1;
    width: auto;

    @supports (width: calc-size(auto, size)) {
      width: calc-size(auto, size);
    }
  }

  .quick-add__button.atc-added .add-to-cart-text {
    animation-name: atc-fade-out;
  }

  .quick-add__button.atc-added .add-to-cart-text--added {
    animation-name: atc-fade-in;
  }

  .quick-add__product-form-component {
    height: 100%;
  }

  .quick-add__product-form-component .shopify-product-form {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    container-type: inline-size;
    height: 100%;
  }

  .quick-add-modal .product-media {
    width: 100%;
    height: 100%;
  }

  .quick-add-modal deferred-media {
    display: none;
  }

  .quick-add-modal .media-gallery--carousel slideshow-component {
    --cursor: default;
  }

  @keyframes atc-fade-in {
    from {
      opacity: 0;
      transform: translateX(1em);
      position: absolute;
    }

    to {
      opacity: 1;
      transform: translateX(0);
      position: inherit;
    }
  }

  @keyframes atc-fade-out {
    from {
      opacity: 1;
      transform: translateX(0);
      position: inherit;
    }

    to {
      opacity: 0;
      transform: translateX(-1em);
      position: absolute;
    }
  }
/* END_SNIPPET:quick-add */

/* START_SNIPPET:resource-card (INDEX:317) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */

/* START_SNIPPET:resource-image (INDEX:318) */
.resource-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--layer-base);
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--ratio);
  }

  .resource-image .image-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */

/* START_SNIPPET:search-modal (INDEX:323) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

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

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

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

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

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

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

  /* Predictive search header tweaks for small screens */
  @media screen and (max-width: 749px) {
    .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;
      }
    }
  }
/* END_SNIPPET:search-modal */

/* START_SNIPPET:search (INDEX:324) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  .header__column--center .search-action {
    width: auto;
    flex-grow: 1;
  }

  :is(.header__column--left, .header__column--center) .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--padding-lg) * -1);
    }
  }

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

/* START_SNIPPET:section (INDEX:325) */
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }
/* END_SNIPPET:section */

/* START_SNIPPET:shop-product-card (INDEX:327) */
.shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background: var(--color-white);
    transition: outline 0.2s ease;
    /* The title link covers the whole card (::after overlay) — surface its
       keyboard focus as a ring on the card itself. */
    &:has(.shop-card__title-link:focus-visible) {
      outline: 2px solid var(--color-purple);
      outline-offset: 2px;
    }

    &.shop-card--featured {
      background: color-mix(in srgb, var(--color-orange) 8%, var(--color-white));
    }

    &.shop-card--featured::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      border-radius: inherit;
      padding: 2px;
      background: var(--gradient-brand);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .shop-card__badge {
      position: absolute;
      inset-block-start: 0;
      inset-inline-start: 0.5rem;
      z-index: var(--layer-raised, 2);
      transform: translateY(-50%);
      padding: 0.125rem 0.5rem;
      border-radius: var(--style-border-radius-pills);
      background: var(--gradient-brand);
      color: var(--color-white);
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 700;
      line-height: 140%;
    }

    .shop-card__head {
      display: flex;
      align-items: flex-start;
      gap: var(--margin-xs);
    }

    .shop-card__media {
      flex: 0 0 30%;
      max-width: 8rem;
      display: block;
    }

    .shop-card__image {
      width: 100%;
      height: auto;
    }

    .shop-card__intro {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }

    .shop-card__rating {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.25rem 0.5rem;
      font-size: 0.75rem;
    }

    .shop-card__rating-stars {
      display: inline-flex;
      align-items: center;
    }

    .shop-card__rating-value {
      font-weight: 600;
      color: var(--color-purple);
    }

    .shop-card__rating-count {
      font-weight: 500;
      color: var(--color-purple);
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

    .shop-card__title {
      margin: 0;
      font-family: var(--font-body--family);
      font-size: 1rem;
      font-style: normal;
      font-weight: 600;
      line-height: 140%;
      color: var(--color-purple);
    }

    .shop-card__title-link {
      color: inherit;
      text-decoration: none;

      /* Make the whole card the clickable target for the title link */
      &::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
      }
    }

    .shop-card__features {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.5rem;
    }

    .shop-card__feature {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 500;
      line-height: 140%;
      color: var(--color-purple);
      min-width: 0;
      span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }
    }

    .shop-card__feature-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background: var(--color-purple);
      color: var(--color-white);

      svg {
        width: 0.875rem;
        height: 0.875rem;
      }
    }

    .shop-card__description {
      margin: 0;
      color: var(--color-purple);
      font-size: 0.9375rem;
      font-weight: 500;
      line-height: 140%;
    }

    .shop-card__footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: var(--margin-sm);
      margin-block-start: auto;
      padding-block-start: 0.5rem;
      border-block-start: 1px solid #95b3eb;
    }

    &.shop-card--featured .shop-card__footer {
      border-block-start-color: color-mix(in srgb, var(--color-orange) 35%, transparent);
    }

    .shop-card__pricing {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .shop-card__price {
      font-size: 1rem;
      font-style: normal;
      font-weight: 700;
      line-height: 140%;
      color: var(--color-purple);
    }

    .shop-card__price-compare {
      color: var(--color-purple);
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 500;
      line-height: 140%;
      text-decoration: line-through;
    }

    .shop-card__form {
      flex: 0 0 auto;
    }

    .shop-card__atc {
      position: relative;
      z-index: var(--layer-raised, 2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      padding: 0.25rem 0.75rem;
      border: 0;
      border-radius: var(--style-border-radius-pills);
      background: var(--color-purple);
      color: var(--color-white);
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      overflow: hidden;

      .add-to-cart-text {
        gap: 0.25rem;
      }

      &:hover {
        background: var(--color-purple-light);
      }

      .svg-wrapper svg {
        width: 1rem;
        height: 1rem;
      }

      span.svg-wrapper.add-to-cart-icon,
      span.svg-wrapper.add-to-cart-icon svg {
        width: 1rem !important;
        height: 1rem !important;
      }
    }
  }
/* END_SNIPPET:shop-product-card */

/* START_SNIPPET:sorting (INDEX:335) */
.sorting-filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--drawer-padding) 0;
    padding-block: var(--padding-sm);
    margin-inline-end: var(--margin-md);
    position: relative;
  }

  .sorting-filter__container .facets__label {
    font-size: var(--font-h4--size);
  }

  .sorting-filter__select-wrapper {
    display: flex;
    position: relative;
    border-radius: var(--variant-picker-button-radius);
    align-items: center;
    overflow: clip;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) .sorting-filter__select {
    outline: none;
  }

  .sorting-filter__container .sorting-filter__select {
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding-inline-end: var(--icon-size-2xs);
    text-align: right;

    /* Needed for Safari */
    text-align-last: right;
  }

  .sorting-filter__select .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .sorting-filter {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-upper-z-index);
    }
  }

  .sorting-filter__options {
    display: flex;
    right: 0;
    flex-direction: column;
    gap: var(--margin-3xs);
    padding: calc(var(--drawer-padding) / 2);
    color: var(--color-foreground);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .sorting-filter__option {
    cursor: pointer;
    display: grid;
    grid-template-columns: var(--icon-size-sm) 1fr;
    gap: var(--margin-2xs);
    min-width: 180px;
    padding: var(--padding-2xs) calc(var(--drawer-padding) / 2) var(--padding-2xs) var(--padding-2xs);

    &:hover {
      border-radius: calc(var(--style-border-radius-popover) / 2);
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &:focus {
      border-radius: calc(var(--style-border-radius-popover) / 2);
    }
  }

  .sorting-filter__input {
    display: none;

    &:checked + .sorting-filter__checkmark + .sorting-filter__label {
      font-weight: 500;
    }
  }

  .sorting-filter__checkmark {
    visibility: hidden;
  }

  *:checked ~ .sorting-filter__checkmark {
    visibility: visible;
  }

  .sorting-filter__label {
    cursor: pointer;
    pointer-events: none;
  }

  .facets-toggle--no-filters .sorting-filter__select-wrapper {
    @media screen and (max-width: 749px) {
      padding-inline-start: 0;
    }
  }

  .facets-mobile-wrapper .sorting-filter .facets__panel {
    padding-inline: 0;
    position: relative;
  }

  .facets-mobile-wrapper .sorting-filter .facets__status {
    display: none;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) .sorting-filter .sorting-filter__options {
    left: 0;
    right: unset;
  }

  .facets-mobile-wrapper .sorting-filter .facets__label {
    margin-inline-end: var(--margin-2xs);
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground-muted);
  }

  .facets-mobile-wrapper .sorting-filter__options {
    border-radius: var(--style-border-radius-popover);
    position: absolute;
    top: 0;
    right: 0;
    width: max-content;
    min-width: var(--facets-panel-min-width);
    max-width: var(--facets-panel-width);
    max-height: var(--facets-panel-height);
    z-index: var(--facets-upper-z-index);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    overflow-y: hidden;
    padding: var(--padding-sm);
    gap: var(--gap-sm);
  }

  .facets-toggle .sorting-filter__container {
    @media screen and (max-width: 749px) {
      padding: 0;
    }
  }

  .facets-toggle .sorting-filter__container .facets__label {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets-toggle .sorting-filter::before {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--drawer .sorting-filter {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .sorting-filter__options {
    block-size: 0;
    overflow-y: clip;
    opacity: 0;
    interpolate-size: allow-keywords;
    transition: content-visibility var(--animation-speed-slow) allow-discrete,
      padding-block var(--animation-speed-slow) var(--animation-easing),
      opacity var(--animation-speed-slow) var(--animation-easing),
      block-size var(--animation-speed-slow) var(--animation-easing);
  }

  details[open] .sorting-filter__options {
    opacity: 1;
    block-size: auto;

    @starting-style {
      block-size: 0;
      opacity: 0;
      overflow-y: clip;
    }

    &:focus-within {
      overflow-y: visible;
    }
  }
/* END_SNIPPET:sorting */

/* START_SNIPPET:stick-atc (INDEX:338) */
.product-sticky-atc {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: #a7c2eb;
    padding: 2px 0;
  }

  .product-sticky-atc--wrapper-product-info,
  .product-sticky--quantity {
    display: flex;
    align-items: center;
    gap: 3px;
  }  

  .product-sticky--quantity quantity-selector-component {
    height: 40px !important;
  }

  .product-sticky-atc--wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 80vw;
    width: 100%;
  }

  .product-sticky-atc--wrapper-left {
    display: flex;
    gap: 20px;
  }

  .product-sticky-atc--image {
    width: 50px;
    height: auto;
  }

  .product-sticky--info h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    font-family: 'Inter';
  }

  .product-sticky-atc--wrapper-left [ref='priceContainer'] > span:first-child .price {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #d73554;
  }

  .product-stick--info {
    display: flex;
    flex-direction: column;
  }

  .product-sticky--rating {
    display: flex;
    gap: 3px;
  }
/* END_SNIPPET:stick-atc */

/* START_SNIPPET:text (INDEX:346) */
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    width: var(--width);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    /*text-wrap: balance;
    text-wrap: pretty;*/
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    /*text-wrap: balance;*/
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block p,
  .text-block.p > * {
    margin-block: var(--font-paragraph--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);

    /* To avoid text being cropped when using a border radius we add a minimum padding. */
    padding-block-start: max(var(--text-padding), var(--padding-block-start, 0));
    padding-block-end: max(var(--text-padding), var(--padding-block-end, 0));
    padding-inline-start: max(var(--text-padding), var(--padding-inline-start, 0));
    padding-inline-end: max(var(--text-padding), var(--padding-inline-end, 0));
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_SNIPPET:text */

/* START_SNIPPET:variant-main-picker (INDEX:358) */
.variant-picker {
    width: 100%;
  }

  .variant-picker__form {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    width: 100%;
  }

  .variant-picker[data-shopify-visual-preview] {
    min-width: 300px;
    padding-inline-start: max(4px, var(--padding-inline-start));
  }

  .variant-option {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);
    --variant-option-padding-inline: var(--padding-md);
  }

  .variant-option--swatches {
    --options-border-radius: var(--variant-picker-swatch-radius);

    width: 100%;
  }

  .variant-option--swatches-disabled {
    pointer-events: none;
    cursor: not-allowed;
  }

  .variant-option--swatches > overflow-list {
    justify-content: var(--product-swatches-alignment);

    @media (max-width: 749px) {
      justify-content: var(--product-swatches-alignment-mobile);
    }
  }

  .variant-option--buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    margin: 0;
    padding: 0;
    border: none;
  }

  .variant-option--buttons legend {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .variant-option__swatch-value {
    padding-inline-start: var(--padding-xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .variant-option__button-label {
    --variant-picker-stroke-color: var(--color-variant-border);

    display: flex;
    flex: 0 0 calc(3ch + 1.3em);
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-height: calc(3ch + 1.3em);
    min-width: fit-content;
    white-space: nowrap;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }

    @media screen and (min-width: 750px) {
      padding: var(--padding-xs) var(--variant-option-padding-inline);
    }
  }

  .variant-option__button-label__text {
    text-align: left;
    text-wrap: auto;
  }

  .variant-option--equal-width-buttons {
    --variant-min-width: clamp(44px, calc(var(--variant-option-padding-inline) * 2 + var(--variant-ch)), 100%);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--variant-min-width), 1fr));

    .variant-option__button-label {
      min-width: var(--variant-min-width);
    }

    .variant-option__button-label__text {
      text-align: center;
      /*text-wrap: balance;*/
    }
  }

  .variant-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__button-label--has-swatch {
    --focus-outline-radius: var(--variant-picker-swatch-radius);

    padding: 0;
    border: none;
    display: block;
    flex-basis: auto;
    min-height: auto;
  }

  .variant-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .variant-option__button-label:has([data-option-available='false']) {
    color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
    --focus-outline: var(--focus-outline-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label:has(:focus-visible) .swatch {
    --focus-outline: var(--focus-outline-width) solid currentcolor;

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label:has(:focus-visible) {
    outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover {
    outline: none;
  }

  .variant-option__button-label--has-swatch:hover {
    outline: var(--focus-outline-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:has(:checked) {
    --focus-outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:has(:checked) .swatch {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__button-label--has-swatch:has(:checked) {
    --focus-outline: var(--focus-outline-width) solid var(--color-foreground);

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  /* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /** There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround. **/
    .variant-option__button-label--has-swatch:has(:checked),
    .variant-option__button-label:has(:focus-visible) .swatch,
    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
      outline: none;
      position: relative;
      overflow: visible;
    }

    .variant-option__button-label--has-swatch:has(:checked)::after,
    .variant-option__button-label:has(:focus-visible) .swatch::after,
    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch::after {
      content: '';
      position: absolute;
      inset: calc(-1 * var(--focus-outline-offset));
      border: var(--focus-outline);
      border-radius: var(--focus-outline-radius, 50%);
      background-color: transparent;
      display: inherit;
    }
  }

  .variant-option__button-label:has([data-option-available='false']):has(:checked) {
    --variant-picker-stroke-color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));

    background-color: inherit;
    color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));
    border-color: var(--color-selected-variant-border);
  }

  .variant-option__button-label input,
  .variant-option--images input {
    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .variant-option__button-label svg {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    pointer-events: none;
    stroke-width: var(--style-border-width);
    stroke: var(--variant-picker-stroke-color);
  }

  .variant-option__select-wrapper {
    display: flex;
    position: relative;
    border: var(--style-border-width-inputs) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);
    align-items: center;
    margin-top: var(--margin-2xs);
    overflow: clip;
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);
  }

  .variant-option__select-wrapper:has(.swatch) {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;
  }

  .variant-option__select-wrapper:hover {
    border-color: var(--color-variant-hover-border);
  }

  .variant-option__select:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__select {
    padding-block: var(--padding-md);
    padding-inline: var(--padding-lg) calc(var(--padding-lg) + var(--icon-size-2xs));
    appearance: none;
    border: 0;
    width: 100%;
    margin: 0;
    cursor: pointer;
  }

  .variant-option__select-wrapper .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .variant-option__select--has-swatch {
    padding-inline-start: calc((2 * var(--padding-sm)) + var(--variant-picker-swatch-width));
  }

  .variant-option__select-wrapper .swatch {
    position: absolute;
    top: 50%;
    left: var(--padding-md);
    transform: translateY(-50%);
  }

  .variant-picker--center,
  .variant-picker--center .variant-option {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .variant-picker--right,
  .variant-picker--right .variant-option {
    text-align: right;
    justify-content: right;
  }
/* END_SNIPPET:variant-main-picker */

/* START_SNIPPET:video (INDEX:361) */
.video-interaction-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: var(--layer-flat);
  }

  .video-interaction-hint:hover {
    opacity: 1;
  }
/* END_SNIPPET:video */