/** Shopify CDN: Minification failed

Line 149:12 Expected identifier but found whitespace
Line 149:14 Unexpected "{"
Line 149:27 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:author-articles (INDEX:20) */
/* Related Articles */
.related-articles {
  background-color: #f8f8f8;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.related-articles__title {
  margin-bottom: 40px;
  text-align: center;
}

.related-articles__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.related-article {
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
}

.related-article--skeleton {
  height: 256px;
  width: 100%;
}

.related-articles__button {
  background: transparent;
  color: #041E42;
  border-radius: 5px;
  border: 1px solid #041E42;
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  height: 54px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.related-article__image-wrapper {
  border-radius: 5px;
  position: relative;
  aspect-ratio: 229/166.77;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  display: flex;
}

.related-article__image {
  object-fit: cover;
  position: absolute;
  min-height: 100%;
}

.related-article__title, .related-article__copy {
  margin-bottom: 16px;
  color: #041e42;
}

.related-article__title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 5.75rem;
}

.related-article__copy {
  display: none;
}

.related-article__cta {
  color: #05C3DE;
}

.related-article__date {
  opacity: 0.3;
}

@media (min-width: 1024px) {
  .related-articles__wrapper {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }

  .related-article--skeleton {
    height: 480px;
  }

  .related-article__copy {
    display: block;
  }

  .related-articles__button {
    max-width: 300px;
  }
}
/* END_SECTION:author-articles */

/* START_SECTION:collection-range-module (INDEX:78) */
.collection-range-slider__wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
  }

  .collection-range-slider__card-wrapper {
    display: flex;
    min-height: 100%;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 280px;
    padding: 29px 11px 0;
  }

  .card-slider__track .card-slider__slide {
    scroll-snap-align: center;
  }

  .collection-range-slider__controls {
    display: {{ nav_display }};
  }

  .collection-range-slider__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 24px);
    width: 48px;
    height: 48px;
    border: 1px solid;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.6);
    border-color: #041e42;
    cursor: pointer;
    z-index: 10;
  }

  .collection-range-slider__navigation.disabled {
    opacity: 0;
    cursor: default;
  }

  .collection-range-slider__navigation__arrow {
    stroke: #041e42;
    stroke-width: 0.8;
  }

  .collection-range-slider__navigation--left {
    left: 12px;
    transform: rotate(180deg);
  }

  .collection-range-slider__navigation--right {
    right: 12px;
  }

  @media (min-width: 375px) {
    .collection-range-slider__card-wrapper {
      width: 316px;
    }
  }

  @media (min-width: 1024px) {
    .card-slider__track .card-slider__slide {
      scroll-snap-align: start;
    }
  }
/* END_SECTION:collection-range-module */

/* START_SECTION:flexible-content (INDEX:136) */
.flexible-content .product-form-reviews__rating {
    white-space: nowrap;
  }

  .flexible-content .column-block-style {
    width: 100%;
  }

  .flexible-content .column-block-overflow-x {
    overflow-x: hidden;
  }

  /* Collapsible Block */
  .flexible-content .collapsible__state {
    width: 24px;
    height: 24px;
    background-color: #041e42;
    border-radius: 50%;
  }

  .flexible-content .collapsible__state::before,
  .flexible-content .collapsible__state::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .flexible-content .collapsible__state::before {
    width: 1px;
    height: 14px;
  }

  .flexible-content .collapsible__state::after {
    width: 14px;
    height: 1px;
  }

  .flexible-content .panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  /* Carousel Block */
  .flexible-content .simple-slider {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .flexible-content .simple-slider::-webkit-scrollbar {
    display: none;
  }

  .flexible-content :not(.simple-slider--active) {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
  }

  .flexible-content .simple-slider__track {
    display: flex;
    gap: 12px;
    padding: 0 12px;
    width: max-content;
  }

  .flexible-content .simple-slider__track > * {
    scroll-snap-align: center;
    scroll-margin: 0 12px;
  }

  .flexible-content .group-carousel-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid;
    border-radius: 999px;
    background: #ffffff;
  }

  .flexible-content .group-carousel-arrow.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
  }

  .flexible-content .group-carousel-arrow.disabled:hover {
    box-shadow: unset;
    pointer-events: none;
  }

  .flexible-content .group-carousel-arrow:hover {
    box-shadow: 0 0 8px #05c3de;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
  }

  .flexible-content .group-carousel__slider-pagination-dot span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #d9d9d9;
    font-size: 0;
  }

  .flexible-content .simple-slider-pagination-dot--active span {
    background-color: #05c3de;
  }

  .flexible-content .group-carousel-slider-controls {
    grid-template-areas: ". . . simple-slider-pagination . group-carousel-controls";
    position: unset;
    top: 335px;
    left: 15px;
    column-gap: 10px;
  }

  .flexible-content .group-carousel-controls {
    grid-area: group-carousel-controls;
  }

  .flexible-content .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .flexible-content .slider-dots button {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .flexible-content .slider-dots .active {
    width: 12px;
    height: 12px;
    background: currentColor;
  }

  /* Table Block */
  .flexible-content .table-container {
    overflow-x: auto;
  }

  .flexible-content .custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--Monochrome-Light-grey, #E4E8EC);
    overflow: hidden;
  }

  .flexible-content .custom-table th {
    user-select: none;
    padding: 12px 16px;
    gap: 10px;
    border-right: 1px solid var(--Monochrome-Light-grey, #E4E8EC);
  }

  .flexible-content .custom-table td {
    user-select: none;
    padding: 8px 16px;
    border-right: 1px solid var(--Monochrome-Light-grey, #E4E8EC);
    gap: 10px;
  }

  .flexible-content .custom-table td:last-child, .flexible-content .custom-table th:last-child {
    border-right: none;
  }

  .flexible-content .table-container {
    scrollbar-width: thin;
    scrollbar-color: #E4E8EC #F6F9F9;
    padding-bottom: 20px;
  }

  .flexible-content .table-container *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .flexible-content .table-container *::-webkit-scrollbar-track {
    background: #F6F9F9;
  }

  .flexible-content .table-container *::-webkit-scrollbar-thumb {
    background: #E4E8EC;
    border-radius: 4px;
  }

  .flexible-content .table-container *::-webkit-scrollbar-thumb:hover {
    background: #E4E8EC;
  }

  /* Video Block */
  .flexible-content .blog-video {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    width: var(--blog-video-width-mobile, 100%);
    aspect-ratio: var(--blog-video-aspect-ratio, 16/9);
  }

  .flexible-content .blog-video__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
  }

  .flexible-content .blog-video__play-button-icon {
    display: block;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
  }

  .flexible-content .blog-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .flexible-content .blog-video__image {
    width: var(--blog-image-width-mobile, 100%);
  }

  /* CTA, Primary and Secondary buttons */
  .flexible-content .cta-link,
  .flexible-content .primary-btn,
  .flexible-content .secondary-btn {
    display: inline-flex;
    text-decoration: none;
    width: auto;
    align-self: auto;
  }

  .flexible-content .cta-link {
    color: #05C3DE;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .flexible-content .cta-secondary-link {
    color: #041E42;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .flexible-content .primary-btn,
  .flexible-content .secondary-btn {
    border-radius: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 24px;
    text-align: center;
    justify-content: center;
  }

  .flexible-content .primary-btn {
    background: #05C3DE;
    color: #ffffff;
  }

  .flexible-content .primary-btn.disabled {
    background: #394547;
    color: #e9e9eb;
  }

  .flexible-content .secondary-btn {
    border: 1px solid #041E42;
    background: transparent;
    color: #041E42;
  }

  /* Headings */
  .flexible-content .heading-level__h1,
  .flexible-content .heading-level__h2,
  .flexible-content .heading-level__h3 {
    display: block;
    font-style: normal;
    font-weight: 600;
    line-height: 123%;
    width: 100%;
  }

  /* Text 5xl-Semibold */
  .flexible-content .heading-level__h1 {
    font-size: 2.8125rem;
    line-height: 100%;
  }

  /* Text 3xl-Semibold */
  .flexible-content .heading-level__h2 {
    font-size: 1.875rem;
  }

  /* Text 2xl-Semibold */
  .flexible-content .heading-level__h3 {
    font-size: 1.4375rem;
  }

  /* Product cards */
  .flexible-content .product-card {
    background: #F8F8F8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 20px;
    padding: 12px;
  }

  .flexible-content .related-product-card {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .flexible-content .product-card .product-card__image-wrapper {
    border-radius: 10px;
    position: relative;
    aspect-ratio: 229/166.77;
    overflow: hidden;
  }

  .flexible-content .related-product-card .product-card__image-wrapper {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    position: relative;
    aspect-ratio: 229/166.77;
    overflow: hidden;
  }

  .flexible-content .product-card__image {
    object-fit: cover;
    position: absolute;
    min-height: 100%;
  }

  .flexible-content .product-card__copy a {
    text-decoration: none;
  }

  .flexible-content .product-card .product-card__copy {
    color: #041E42;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    row-gap: 20px;
  }

  .flexible-content .related-product-card .product-card__copy {
    color: #041E42;
    background-color: #ffffff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    row-gap: 10px;
  }

  .flexible-content .product-card__copy .finance-modal-trigger {
    background: transparent;
    border: 0;
    padding: 0;
  }

  .flexible-content .product-card__copy .tc-link {
    color: #041E42;
  }

  /* Quote Block */
  .flexible-content .quote-block {
    background-color: inherit;
    padding: 36px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .flexible-content .quote-block__title, .quote-block__text {
    margin-bottom: 28px;
  }

  .flexible-content .quote-block__text em {
    font-style: italic;
  }

  .flexible-content .quote-block__stars {
    display: flex;
    margin-bottom: 16px;
  }

  .flexible-content .quote-block__stars svg {
    width: 18px;
    height: 18px;
    color: #05c3De;
  }

  .flexible-content .quote-block__author {
    color: #05c3De;
  }

  /* Related Articles */
  .flexible-content .related-article__wrapper {
    gap: 24px;
  }

  .flexible-content .related-article {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
  }

  .flexible-content .related-article__image-wrapper {
    border-radius: 10px;
    position: relative;
    aspect-ratio: 229/166.77;
    overflow: hidden;
  }

  .flexible-content .related-article__image {
    object-fit: cover;
    position: absolute;
    min-height: 100%;
  }

  .related-article__title-link {
    text-decoration: none;
    text-decoration-line: none;
    -webkit-text-decorations-in-effect: none;
  }

  .flexible-content .related-article__title,
  .flexible-content .related-article__copy {
    margin-bottom: 16px;
    color: #041e42;
  }

  .flexible-content .related-article__title strong,
  .flexible-content .rich-text-block strong {
    font-weight: 600;
  }

  .flexible-content .related-article__cta {
    text-decoration: none;
    text-decoration-line: none;
    -webkit-text-decorations-in-effect: none;
    color: #05C3DE;
  }

  .flexible-content .related-article__date {
    opacity: 0.3;
  }

  /* Blog Image */
  .flexible-content .blog-image {
    align-self: start;
    width: var(--blog-image-width-mobile, 100%);
  }

  /* Rich text block */
  .flexible-content .rich-text-block h1,
  .flexible-content .rich-text-block h2,
  .flexible-content .rich-text-block h3,
  .flexible-content .rich-text-block h4,
  .flexible-content .rich-text-block h5 {
    font-style: normal;
    font-weight: 600;
    line-height: 123%;
    margin-bottom: 16px;
  }

  /* Text 5xl-Semibold */
  .flexible-content .rich-text-block h1 {
    font-size: 2.8125rem;
    line-height: 100%;
  }

  /* Text 3xl-Semibold */
  .flexible-content .rich-text-block h2 {
    font-size: 1.875rem;
  }

  /* Text 2xl-Semibold */
  .flexible-content .rich-text-block h3 {
    font-size: 1.4375rem;
  }

  /* Text xl-Semibold */
  .flexible-content .rich-text-block h4 {
    font-size: 1.25rem;
  }

  .flexible-content .rich-text-block p,
  .flexible-content .rich-text-block a,
  .flexible-content .rich-text-block a:hover,
  .flexible-content .rich-text-block a:visited,
  .flexible-content .rich-text-block a:active,
  .flexible-content .rich-text-block ul,
  .flexible-content .rich-text-block li,
  .flexible-content .rich-text-block ol,
  .flexible-content .rich-text-block li  {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4375rem;
    color: inherit;
  }

  .flexible-content .rich-text-block p {
    margin-bottom: 16px;
  }

  .flexible-content .rich-text-block ul,
  .flexible-content .rich-text-block ol {
    margin-bottom: 16px;
  }

  .flexible-content .rich-text-block ul li,
  .flexible-content .rich-text-block ol li {
    margin-bottom: 8px;
  }

  /* Discount Badge */
  .flexible-content .discount-badge {
    top: 10px;
    left: 10px;
  }

  .flexible-content .discount-save-badge {
    border-radius: 10px;
  }

  /* Author Card */
  .flexible-content .author-card,
  .flexible-content .author-card__image,
  .flexible-content .author-card__meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .flexible-content .author-card {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .flexible-content .author-card__image {
    gap: 12px;
  }

  .flexible-content .author-card__image img {
    max-width: 58px;
    max-height: 58px;
    border-radius: 50%;
  }

  .flexible-content .author-card__meta-info strong {
    font-weight: 500;
  }

  .flexible-content .name_style_underlined {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }

  .blog-card {
    color: #041E42;
  }

  .blog-card__image-wrapper {
    min-width: var(--blog-image-width-mobile, 100%);
    max-width: var(--blog-image-width-mobile, 100%);
  }

  .blog-card__image {
    width: var(--blog-image-width, 50%);
  }

  .visually-hidden {
    display: none;
  }

  .info-dialog-color {
    background: transparent;
    border: none;
  }

  .product-card__cta-container {
    column-gap: 20px;
  }

  .block-product-card-dialog {
    border: 0;
    border-radius: 15px;
    background-color: #fff;
    margin: auto;
    max-width: 450px;
  }

  .block-product-card-dialog__close-btn {
    border: none;
    background: none;
    cursor: pointer;
    margin-left: auto;
  }

  .block-product-card__free-items-dialog-comparison-wrapper {
    margin-bottom: 6px;
  }

  .block-product-card__free-items-dialog-comparison-wrapper .free-items-button {
    border: none;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
  }

  .flexible-content .featured_award_image {
    width: 40px;
  }

  .flexible-content [data-table-cell] a {
   color: unset;
  }

  @media (min-width: 1024px) {
    .heading-level__h1,
    .flexible-content .rich-text-block h1 {
      font-size: 4.375rem;
      line-height: 113%;
    }

    .blog-card__image-wrapper {
      min-width: var(--blog-image-width-small-desktop, 100%);
      max-width: var(--blog-image-width-small-desktop, 100%);
    }

    .blog-image {
      width: var(--blog-image-width-small-desktop, 100%);
    }

    .author-card {
      text-align: left;
    }

    .blog-video {
      width: var(--blog-video-width-small-desktop, 100%);
    }

    .blog-video__image {
      width: var(--blog-image-width-small-desktop, 100%);
    }

    .flexible-content .horizontal-card .featured_award_image {
      width: 80px;
    }

    .flexible-content .horizontal-card.product-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 60px;
      max-width: 100%;
      container-type: inline-size;
    }

    .flexible-content .horizontal-card.related-product-card {
      background-color: #fff;
      border-radius: 5px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 60px;
      width: 100%;
      container-type: inline-size;
    }

    .flexible-content .horizontal-card .product-card__header-container {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .flexible-content .horizontal-card .product-card__image-wrapper {
      display: flex;
      width: 50cqw;
      align-items: center;
      align-content: center;
      gap: 40px;
      flex: 1 0 0;
      flex-wrap: wrap;
      aspect-ratio: 436.50/245.53;
    }

    .flexible-content .horizontal-card.related-product-card .product-card__image-wrapper {
      border-radius: 10px;
      width: 50cqw;
      aspect-ratio: 436.50/245.53;
      overflow: hidden;
    }

    .flexible-content .horizontal-card .product-card__copy {
      display: flex;
      align-items: flex-start;
      align-content: flex-start;
      flex: 1 0 0;
      flex-wrap: wrap;
    }

    .author-card__meta {
      flex-direction: row;
    }
  }

  @media (min-width: 1440px) {
    .flexible-content .horizontal-card .product-card__image-wrapper {
      display: flex;
      align-items: center;
      align-content: center;
      gap: 40px;
      flex: 1 0 0;
      flex-wrap: wrap;
      aspect-ratio: 642.00 / 361.13;
    }

    .blog-image {
      width: var(--blog-image-width-large-desktop, 100%);
    }

    .blog-card__image-wrapper {
      min-width: var(--blog-image-width-large-desktop, 100%);
      max-width: var(--blog-image-width-large-desktop, 100%);
    }

    .blog-video {
      width: var(--blog-video-width-large-desktop, 100%);
    }

    .blog-video__image {
      width: var(--blog-image-width-large-desktop, 100%);
    }
  }
/* END_SECTION:flexible-content */

/* START_SECTION:range-slider (INDEX:260) */
.range-slider__wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
  }

  .range-slider__slide {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 100%;
    max-width: 316px;
    min-width: 220px;
    padding: 0 11px;
    align-self: flex-end;
  }

  .range-slider__card-wrapper {
    display: flex;
    min-height: 100%;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 244px;
    padding: 29px 11px 0;
  }

  .range-slider__card-wrapper--active {
    padding-top: 0;
  }

  @media (min-width: 1024px) {
    .range-slider__wrapper {
      justify-content: center;
    }

    .range-slider__card-wrapper {
      width: 338px;
      padding: 0 11px;
    }
  }
/* END_SECTION:range-slider */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:cross-sell-template.mattress-upsell (INDEX:448) */
.cross-sell-image-container {
      --cross-sell-image-width: 100%;
    }

    .cross-sell-shadow-image {
      transform: translate3d(-3px, 0, 0) scale(1);
    }

    .cross-sell-upsell__price .cross-sell-upsell__price--difference {
      white-space: nowrap;
    }
/* END_SNIPPET:cross-sell-template.mattress-upsell */

/* START_SNIPPET:explainer-video.style (INDEX:467) */
.explainer-video {
    padding: 10px 12px;
    border-radius: 8px;
    background: linear-gradient(0deg, #05c3de -108.33%, #041e42 79.76%), linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #041e42 100%), #e4e8ec;
    background-blend-mode: normal, overlay, normal;
    color: #fff;
    border: 0;
    text-align: left;
    cursor: pointer;
  }

  .explainer-video--strip {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
  }

  .explainer-video--expanded {
    display: flex;
    flex-direction: column;
    padding: 8px;
  }

  .explainer-video__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 2.5px 0;
  }

  .explainer-video__content--expanded {
    padding: 0 0 0 12px;
  }

  .explainer-video__subtitle {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
  }

  .explainer-video__subtitle:hover {
    text-decoration: underline;
  }

  .explainer-video__image-container {
    position: relative;
  }

  .explainer-video__image-container--strip {
    height: 56px;
  }

  .explainer-video__image-wrapper {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .explainer-video__image-wrapper--expanded {
    border-radius: 10px 10px 0 0;
  }

  .explainer-video__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .explainer-video__button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 56px;
    height: 56px;
  }

  .explainer-video__button--expanded {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-top: 12px;
  }

  .explainer-video__timer {
    display: flex;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.875rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.25;
    position: absolute;
    right: calc(100% - 7px);
    width: 53px;
    height: 60px;
  }

  .explainer-video__timer--expanded {
    right: 12px;
    top: 2px;
  }

  .explainer-video__timer-icon {
    left: 0;
    top: 0;
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }

  .explainer-video__play-icon {
    position: absolute;
    bottom: -4px;
    left: -7px;
    pointer-events: none;
  }

  .explainer-video__play-icon--expanded {
    position: relative;
    bottom: unset;
    left: unset;
  }

  .explainer-video__subheading {
    background-color: #fff;
    color: #041e42;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 12px;
  }

  /* DIALOG */

  .explainer-video-dialog {
    background-color: #000;
    border: 0;
    position: fixed;
    z-index: 100;
    margin: 0;
    padding: 0;
    top: calc(50% - 10px);
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    min-width: 100vw;
    aspect-ratio: 16/9;
  }

  @media (orientation: portrait) {
    .explainer-video-dialog {
      min-width: 100vw;
      min-height: unset;
    }
  }

  @media (orientation: landscape) {
    .explainer-video-dialog {
      min-width: unset;
      min-height: calc(100vh - 70px);
    }
  }

  .explainer-video-dialog__content {
    height: 100%;
    width: auto;
  }

  .explainer-video-dialog::backdrop {
    background: rgba(0, 0, 0, 0.8);
  }

  .explainer-video-dialog__close-btn {
    background-color: rgba(245, 245, 247, 0.6);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    margin-left: auto;
    margin-right: 30px;
    margin-top: -8px;
    cursor: pointer;
    pointer-events: all;
  }

  .explainer-video-dialog__close-icon {
    width: 12px;
    height: 12px;
  }

  .explainer-video-dialog__header {
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid #e4e8ec;
    padding: 0 12px 0 49px;
    pointer-events: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: transparent;
    border: 0;
  }

  .explainer-video-dialog__video::cue {
    font-size: 16px;
  }

  @media (min-width: 1024px) {
    .explainer-video-dialog {
      overflow: hidden;
      border: 0;
      padding: 0;
      width: auto;
      max-width: calc(1440px - 40px * 2);
      min-width: unset;
    }

    .explainer-video-dialog__header {
      height: 93px;
    }

    .explainer-video-dialog__close-btn {
      width: 50px;
      height: 50px;
      margin-right: 0;
      margin-top: 0;
    }

    .explainer-video-dialog__close-icon {
      width: 19px;
      height: 19px;
    }
  }

  @media (min-width: 1024px) and (orientation: portrait) {
    .explainer-video-dialog {
      min-width: unset;
      min-height: unset;
    }
  }

  @media (min-width: 1024px) and (orientation: landscape) {
    .explainer-video-dialog {
      min-width: unset;
      min-height: unset;
    }
  }
/* END_SNIPPET:explainer-video.style */

/* START_SNIPPET:financial-savings-badge (INDEX:476) */
.financial-savings-badge {
  background-color: var(--background-color-right, #49A09D);
  color: var(--text-color-right, #FFFFFF);
  display: flex;
  overflow: hidden;
  font-family: inherit;
  width: 100%;
  flex-wrap: nowrap;
  text-decoration: none;
  height: 100%;
  gap: 0;

  /* Prevents half-pixel rendering issues on some browsers */
  transform: translateZ(0); /* Forces hardware acceleration */
  will-change: transform;   /* Optimizes rendering for transformations */
}

.financial-savings-badge__col {
  padding: 4px 10px;
  text-align: center;
  position: relative;
  flex: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .2em;
}

.financial-savings-badge__col--left-col {
  background-color: var(--background-color-left, #F15A24);
  color: var(--text-color-left, #FFFFFF);
  justify-content: flex-start;
  padding: 4px 4px 4px 8px;
}

.financial-savings-badge__col--left-col:last-child {
  padding: 4px 8px;
}

.financial-savings-badge__col--right-col {
  justify-content: flex-end;
  padding: 4px 8px 4px 4px;
}

.financial-savings-badge__separator {
  position: relative;
  left: -0.75px;
  align-self: center;
}

.financial-savings-badge__separator-arrow {
  fill: var(--background-color-left);
}

.financial-savings-badge__obelus {
  align-self: flex-start;
  font-size: 10px;
  vertical-align: super;
  text-decoration: none;
}
/* END_SNIPPET:financial-savings-badge */

/* START_SNIPPET:free-items-dialog (INDEX:483) */
.free-items-button.free-items-button--basic {
    background: inherit;
    color: inherit;
    display: flex;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 100%;
    gap: 4px;
    justify-content: center;
  }
/* END_SNIPPET:free-items-dialog */

/* START_SNIPPET:navigation-top-level-item (INDEX:553) */
.main-nav__item-pill {
        background-color: var(--nav-pill-bg);
        color: var(--nav-pill-colour);
        font-size: 12px;
        line-height: 15px;
        border-radius: 5px;
        padding: 3px 4px;
        text-align: center;
        align-self: center;

        & + .inline {
          margin-left: 8px;
        }

        &:last-child {
          margin-right: 16px;
        }
      }
      .main-nav__item-pill strong {
        font-weight: 600;
      }
/* END_SNIPPET:navigation-top-level-item */

/* START_SNIPPET:product-cross-sell-card.component.image (INDEX:590) */
.product-cross-sell-card-image-component__image {
    border-top-left-radius: var(--card-border-top-left-radius);
    border-top-right-radius: var(--card-border-top-right-radius);
    border-bottom-left-radius: var(--card-border-bottom-left-radius);
    border-bottom-right-radius: var(--card-border-bottom-right-radius);
  }

  .product-cross-sell-card-image-component__image--hover {
    opacity: 0;
    object-position: bottom right;
  }

  .product-cross-sell-card-image-component__image--hover-bg-white {
    background-color: #ffffff;
  }

  @media (hover: hover) and (pointer: fine) {
    .product-cross-sell-card-image-component:hover .product-cross-sell-card-image-component__image--has-hover {
      opacity: 0;
    }
    .product-cross-sell-card-image-component:hover .product-cross-sell-card-image-component__image--hover {
      opacity: 1;
    }
  }
/* END_SNIPPET:product-cross-sell-card.component.image */

/* START_SNIPPET:product-plp-card.component.colour-swatches (INDEX:622) */
.product-plp-card-colour-swatches-component {
    display: flex;
    height: 22px;
    flex-direction: row;
    justify-content: center;
  }

  .product-plp-card-colour-swatches-component__swatches {
    display: flex;
    flex-direction: row;
    gap: var(--colour-swatch-gap, 6px);
    margin-right: 8px;
  }

  .product-plp-card-colour-swatches-component__swatch {
    padding: 2px;
    width: 22px;
    height: 22px;
  }

  .product-plp-card-colour-swatches-component__selector {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    cursor: pointer;
  }

  .product-plp-card-colour-swatches-component__more {
    border-radius: 5px;
    border: 1px solid #818ea0;
    color: #818ea0;
    padding: 2px 3px;
    text-wrap: nowrap;
    align-self: center;
  }
/* END_SNIPPET:product-plp-card.component.colour-swatches */

/* START_SNIPPET:product-plp-card.component.description-text (INDEX:623) */
.product-plp-card-description-text {
    height: 72px; /* 4 lines of text */
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  @media (min-width: 1024px) {
    .product-plp-card-description-text {
      height: 56px; /* 3 lines of text */
      -webkit-line-clamp: 3;
    }
  }
/* END_SNIPPET:product-plp-card.component.description-text */

/* START_SNIPPET:product-plp-card.component.image (INDEX:624) */
.product-plp-card-image-component {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-plp-card-image-component__image {
    object-fit: cover;
    position: absolute;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    min-height: 100%;
    min-width: 100%;
  }

  .product-plp-card-image-component__image--hover {
    opacity: 0;
    object-position: bottom right;
  }

  .product-plp-card-image-component__image--hover-bg-white {
    background-color: #ffffff;
  }

  @media (hover: hover) and (pointer: fine) {
    .product-plp-card-image-component:hover .product-plp-card-image-component__image--has-hover {
      opacity: 0;
    }
    .product-plp-card-image-component:hover .product-plp-card-image-component__image--hover {
      opacity: 1;
    }
  }
/* END_SNIPPET:product-plp-card.component.image */

/* START_SNIPPET:product-plp-card.component.offer (INDEX:625) */
.product-plp-card-offer-component {
    background-color: var(--offer-background, #49a09d);
    color: var(--offer-text-color, #ffffff);
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
  }
/* END_SNIPPET:product-plp-card.component.offer */

/* START_SNIPPET:product-plp-card.component.overlay.gender (INDEX:627) */
.product-plp-card-overlay-gender-badge {
    bottom: 0;
    left: 0;
    padding: 4px 20px;
    background-color: #E6F9FC;
    color: #394547;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.3px;
    text-transform: uppercase;
  }
/* END_SNIPPET:product-plp-card.component.overlay.gender */

/* START_SNIPPET:product-plp-card.component.overlay (INDEX:628) */
.product-plp-card-overlay-component {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  /* Reduceds the height of the overlay when there is an offer banner present */
  .product-plp-card-overlay-component:has(+ *) {
    height: calc(100% - 27px);
  }

  .product-plp-card-overlay-component__top-left,
  .product-plp-card-overlay-component__bottom-left,
  .product-plp-card-overlay-component__bottom-right {
    position: absolute;
  }

  .product-plp-card-overlay-component__top-left {
    top: 0;
    left: 0;
  }

  .product-plp-card-overlay-component__bottom-left {
    bottom: 0;
    left: 0;
  }

  .product-plp-card-overlay-component__bottom-right {
    bottom: 0;
    right: 0;
  }
/* END_SNIPPET:product-plp-card.component.overlay */

/* START_SNIPPET:product-plp-card.component.overlay.pill (INDEX:629) */
.product-plp-card-overlay-pill {
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 23px;
    padding: 0 8px;

  }

  .product-plp-card-overlay-pill--dark-blue {
    background-color: #041e42;
    border: 1px solid #ffffff;
    color: #ffffff;
  }

  .product-plp-card-overlay-pill--red {
    background-color: #c00033;
    color: #ffffff;
  }
/* END_SNIPPET:product-plp-card.component.overlay.pill */

/* START_SNIPPET:product-plp-card.component.overlay.usp (INDEX:631) */
.product-plp-card-overlay-usp {
    border-radius: 15px;
    background: #f6f9f9;
    display: flex;
    padding: 4px 8px;
    margin: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .product-plp-card-overlay-usp--highlight {
    background: #efd977;
  }
/* END_SNIPPET:product-plp-card.component.overlay.usp */

/* START_SNIPPET:product-plp-card.component.reviews (INDEX:634) */
.product-plp-card-reviews-component__stars {
    display: flex;
    align-items: center;
    margin-right: 4px;
    width: 56px;
  }
/* END_SNIPPET:product-plp-card.component.reviews */

/* START_SNIPPET:product-plp-card.component.usp-list (INDEX:635) */
.product-plp-card-usp-component__usp-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
  }

  .product-plp-card-usp-component__usp-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    height: auto;
  }

  .product-plp-card-usp-component__usp-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    width: 18px;
    height: 18px;
  }

  @media (min-width: 1024px) {
    .product-plp-card-usp-component__usp-list-item {
      height: 18px;
    }
  }
/* END_SNIPPET:product-plp-card.component.usp-list */

/* START_SNIPPET:product-plp-card (INDEX:636) */
.product-plp-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 100%;
    align-self: stretch;
  }

  .product-plp-card__image-container {
    border-radius: 10px 10px 0 0;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 173 / 122;
    margin-top: 0;
  }

  .product-plp-card__content {
    background-color: #F1F1F1;
    color: #041e42;
    border-radius: 0 0 10px 10px;
    padding: 8px 10px 16px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    flex-grow: 1;
  }

  .product-plp-card__cta-section {
    margin-top: auto;
  }

  .product-plp-card__content--inverted {
    background-color: #041e42;
    color: #ffffff;
  }

  .product-plp-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 8px;
  }

  .product-plp-card__link {
    color: inherit;
    text-decoration: none;
  }

  .product-plp-card__finance-button {
    background: none;
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .product-plp-card__strikethrough-tc-link {
    color: inherit;
    text-decoration: none;
  }

  .product-plp-card__special-promotion-header {
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 29px;
    text-align: center;
    overflow: hidden;
    width: 100%;
  }

  .product-plp-card__special-promotion-header + .product-plp-card__image-container {
    border-radius: 0;
    margin-top: 0;
  }

  @media (min-width: 1024px) {
    .product-plp-card__header {
      min-height: calc(1.4375rem * 2); /* 2 lines of title */
    }

    .product-plp-card__image-container {
      margin-top: 29px;
    }


    .product-plp-card__special-promotion-header + .product-plp-card__image-container {
      margin-top: 0;
    }
  }
/* END_SNIPPET:product-plp-card */

/* START_SNIPPET:special-promotion-title (INDEX:726) */
.special-promotion-title {
    background-color: var(--special-promotion-background);
    color: var(--special-promotion-text);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
/* END_SNIPPET:special-promotion-title */

/* START_SNIPPET:variant-price (INDEX:763) */
.variant-price {
    align-items: flex-end;
  }

  .variant-price__finance-dialog-trigger {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
  }
/* END_SNIPPET:variant-price */