/** Shopify CDN: Minification failed

Line 1948:13 Expected identifier but found whitespace
Line 1948:15 Unexpected "{"
Line 1948:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:0) */
.announcement-bar {
    width: 100%;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .announcement-bar__content {
    width: 100%;
  }

  .announcement-bar__content .splide__arrow {
    background: transparent;
    border: none;

    .icon {
      font-size: 20px !important;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:blog-featured (INDEX:1) */
.blog-featured {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .blog-featured__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .blog-featured__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .blog-featured__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:blog-featured */

/* START_SECTION:breadcrumbs (INDEX:2) */
.breadcrumbs {
    padding-top: var(--padding-md);
    padding-bottom: var(--padding-md);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .breadcrumbs__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-xs);
  }

  .breadcrumbs__item {
    display: flex;
    font-size: var(--font-body--size);
    flex-direction: row;
    align-items: center;
    gap: var(--gap-xs);
  }

  .breadcrumbs__item:not(:last-child):after {
    content: '';
    display: inline-block;
    position: relative;
    vertical-align: middle;
  }

  .breadcrumbs--triangle .breadcrumbs__item:not(:last-child):after {
    border-style: solid;
    border-width: 0.1em 0.1em 0 0;
    height: 0.35em;
    width: 0.35em;
    transform: rotate(45deg);
  }

  .breadcrumbs--slash .breadcrumbs__item:not(:last-child):after {
    content: '/';
  }

  .breadcrumbs__link {
    cursor: pointer;
    display: inline-block;
    border: none;
    box-shadow: none;
    text-decoration: none;
    text-underline-offset: 0.3rem;
    transition: var(--animation-link-hover);
  }

  .breadcrumbs__link:hover {
    opacity: var(--opacity-link-hover);
  }
/* END_SECTION:breadcrumbs */

/* START_SECTION:cart-drawer (INDEX:3) */
:root {
    --cart-item-image-width: 80px;
  }

  cart-drawer {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background: rgba(var(--color-shadow));
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: brightness(1);
    backdrop-filter: brightness(1);
    transition: opacity var(--animation-speed) var(--animation-easing), visibility var(--animation-speed) var(--animation-easing);
  }

  cart-drawer.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: brightness(0.75);
    backdrop-filter: brightness(0.75);
    transition: opacity var(--animation-speed) var(--animation-easing), visibility var(--animation-speed) var(--animation-easing),
      -webkit-backdrop-filter var(--animation-speed) var(--animation-easing), backdrop-filter var(--animation-speed) var(--animation-easing);
  }

  cart-drawer.is-open .cart-drawer__inner {
    animation: modalSlideInRight var(--animation-speed) var(--animation-easing) forwards;
  }

  cart-drawer.is-closing .cart-drawer__inner {
    animation: modalSlideOutRight var(--animation-speed) var(--animation-easing) forwards;
  }

  .cart-drawer__inner {
    height: 100%;
    width: var(--cart-drawer-width);
    max-width: calc(100vw - 30px);
    padding: 0 var(--padding-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    background-color: var(--color-background);
    color: var(--color-foreground);
    box-shadow: var(--modal-shadow);
  }

  @media (width <= 750px) {
    .cart-drawer__inner.cart-drawer--full-width-on-mobile {
      width: 100%;
      max-width: 100%;
    }
  }

  @media (width <= 350px) {
    .cart-drawer__inner {
      width: 100%;
    }
  }

  .cart-drawer .splide:not(.is-overflow) .splide__pagination {
    display: flex;
  }

  .cart-drawer .slider-block--with-pagination {
    padding-bottom: var(--margin-md);
  }

  .cart-drawer .splide__pagination {
    bottom: calc(-1 * var(--margin-md));
  }

  .cart-drawer--floating {
    margin: 15px;
    height: calc(100% - 30px);
  }

  .cart-drawer--rounded.card {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cart-drawer__inner-empty {
    height: 100%;
    padding: 0 var(--padding-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-lg);
  }

  .cart-drawer__inner-empty > p {
    text-align: center;
  }

  .cart-drawer__inner-empty .cart-drawer__close {
    right: var(--padding-sm);
    position: absolute;
    top: var(--padding-sm);
  }

  @media screen and (max-width: 350px) {
    .cart-drawer__inner {
      max-width: calc(100vw - 10px);
    }

    .cart-drawer--floating {
      margin: 5px;
      height: calc(100% - 10px);
    }
  }

  /* Cart Drawer Empty State */

  .cart-drawer--empty .cart-drawer__header,
  .cart-drawer--empty .cart-drawer__body,
  .cart-drawer--empty .cart-drawer__footer {
    display: none;
  }

  cart-drawer:not(.cart-drawer--empty) .cart-drawer__inner-empty {
    display: none;
  }

  /* Cart Drawer Header */

  .cart-drawer__header {
    position: relative;
    padding: var(--padding-md);
    border-bottom: var(--separator-border-thickness) solid var(--color-border);
    margin-left: calc(-1 * var(--padding-md));
    width: calc(100% + (2 * var(--padding-md)));
  }

  .cart-drawer__header_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-drawer__header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(var(--color-foreground));
  }

  .cart-drawer__close {
    display: inline-block;
    padding: 0;
    color: rgb(var(--color-foreground));
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 24px;
  }

  /* Cart Drawer Content */

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
  }

  .cart-drawer__items--disabled {
    pointer-events: none;
  }

  /* Cart Drawer Footer */

  .cart-drawer__footer {
    border-top: var(--separator-border-thickness) solid var(--color-border);
    padding: var(--padding-md);
    position: sticky;
    bottom: 0;
    background-color: var(--color-background);
    width: calc(100% + (2 * var(--padding-md)));
    margin-left: calc(-1 * var(--padding-md));
  }

  .cart-drawer__footer > *:not(:last-child) {
    margin-bottom: var(--padding-sm);
  }

  .cart-drawer__footer .accordion__header {
    padding: 0;
  }

  .cart-drawer__footer .accordion__content {
    padding: var(--padding-sm) 0;
  }

  /* Totals */

  .cart-drawer__totals,
  .cart-drawer__reductions {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }

  .cart-drawer__totals > * {
    color: rgb(var(--color-foreground));
    margin: 0;
    line-height: 1;
  }

  .cart-drawer__reductions p,
  .cart-drawer__totals p {
    font-weight: 500;
    margin: 0;
    line-height: normal;
  }

  .cart-drawer__reductions p,
  .cart-drawer__totals p,
  .cart-drawer__reductions-value,
  .cart-drawer__totals-value {
    font-size: var(--font-body--size-emphasized);
  }

  /* CTAs */

  .cart-drawer__ctas {
    text-align: center;
    display: flex;
    gap: 10px;
  }

  .cart-drawer__ctas button {
    width: 100%;
  }

  /* Items */

  .cart-drawer__body {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    padding-right: calc(var(--padding-sm) / 2);
    margin-right: calc(-1 * (var(--padding-sm) / 2));
    padding-top: var(--padding-md);
  }

  .cart-item__error {
    display: flex;
    align-items: flex-start;
    width: min-content;
    min-width: 100%;
  }

  .cart-drawer__body::-webkit-scrollbar {
    width: 3px;
  }

  /* Item */

  .cart-drawer__item {
    background-color: var(--color-background);
    color: var(--color-foreground);
    margin-bottom: var(--margin-lg);
    display: flex;
    gap: var(--gap-sm);
    align-items: flex-start;
    max-width: 100%;
  }

  .cart-drawer__item--loading {
    opacity: 0.5;
    pointer-events: none;
  }

  .cart-drawer__item:last-child {
    margin-bottom: var(--padding-sm);
  }

  .cart-drawer__item > a {
    display: flex;
    align-items: center;
  }

  .cart-drawer__item img {
    width: var(--cart-item-image-width);
    object-fit: cover;
    background-color: white;
    max-width: fit-content;
    border-radius: calc(var(--card-border-radius) - var(--padding-sm));
  }

  .cart-drawer__item.card {
    padding: var(--padding-sm);

    img {
      border-radius: calc(var(--card-border-radius) - var(--padding-sm));
    }
  }

  .cart-drawer__item-options,
  .cart-drawer__item-options p {
    line-height: normal;
    font-size: var(--font-body--size-small);
    word-break: break-word;
    color: rgba(var(--color-foreground), 0.8);
  }

  .cart-drawer__item-options .cart-drawer__item-option:not(:last-child) {
    margin-bottom: var(--padding-xs);
  }

  .cart-drawer__item-option {
    margin: 0;
  }

  .cart-drawer__item-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 5px;
  }

  .cart-drawer__item-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: var(--cart-item-image-width);
    gap: var(--gap-sm);
  }

  .cart-drawer__item-name {
    text-decoration: none;
    display: block;
    width: calc(100% + 60px);
    font-size: var(--font-body--size);
    color: rgb(var(--color-foreground));
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
    transition: var(--animation-link-hover);

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }

  .cart-drawer__item-prices {
    position: relative;
    width: 100%;
  }

  .cart-drawer__item-prices.loading {
    width: max-content;
  }

  .cart-drawer__item-price {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    flex-wrap: wrap;
    font-size: var(--font-body--size-small);
    color: rgb(var(--color-foreground));
  }

  .cart-drawer__item-price > * {
    display: block;
    margin: 0;
    padding: 0;
    line-height: normal;
  }

  .cart-drawer__item-discounted-prices {
    display: flex;
    align-self: center;
    gap: 6px;
    line-height: normal;
  }

  .cart-drawer__item-compare-price {
    opacity: 0.7;
  }

  .cart-drawer__item--no-remove-button .cart-drawer__item-actions-wrapper {
    justify-content: flex-end;
  }

  .cart-drawer__item--no-remove-button .cart-drawer__item-name {
    width: calc(100% + var(--cart-item-image-width));
  }

  @media screen and (max-width: 350px) {
    .cart-drawer__item--no-remove-button .cart-drawer__item-name {
      width: calc(100% + 75px);
    }
  }

  @media screen and (max-width: 350px) {
    .cart-drawer__item img {
      width: var(--cart-item-image-width);
      max-height: calc(var(--cart-item-image-width) * 1.2);
    }

    .cart-drawer__item-content {
      gap: 5px;
    }

    .cart-drawer__item-wrapper {
      min-height: calc(var(--cart-item-image-width) * 1.2);
    }
    .cart-drawer__item-name {
      width: calc(100% + 50px);
    }

    .cart-drawer__item-prices {
      width: 100%;
    }
  }

  /* Quantity & Remove Button */

  .cart-drawer__item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cart-drawer__item-actions-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    gap: 5px;
  }

  @media screen and (max-width: 749px) {
    .cart-drawer__item-actions-wrapper {
      flex-wrap: wrap;
    }
  }

  /* Discounts */

  .cart-drawer__discounts {
    margin-bottom: 0;
  }

  .cart-drawer__discount {
    margin-bottom: var(--padding-sm);
  }

  .cart-drawer__item-discounts,
  .cart-drawer__discounts {
    font-size: 12px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .cart-drawer__item-discount,
  .cart-drawer__discount {
    min-width: max-content;
    gap: var(--gap-xs);
  }

  .cart-drawer__item-discount .icon {
    font-size: 14px !important;
  }

  .icon-discount {
    color: rgb(var(--color-foreground));
    width: 12px;
    height: 12px;
    margin-right: 7px;
  }

  .cart-drawer__item-discount span {
    max-width: 70px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  @media screen and (max-width: 750px) {
    .cart-drawer__discounts {
      overflow: scroll;
      flex-wrap: nowrap;
    }

    .cart-drawer__discounts::-webkit-scrollbar {
      height: 3px;
    }
  }
/* END_SECTION:cart-drawer */

/* START_SECTION:cart (INDEX:4) */
.cart {
    display: block;
  }

  .cart__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  :root {
    --cart-item-image-width: 85px;
  }

  .cart__empty {
    border: var(--container-border-thickness) solid var(--color-border);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-sm);
  }

  .cart {
    padding-bottom: 3rem;
  }

  .cart__header {
    padding: var(--gap-md) 0;
  }

  .cart__form {
    display: grid;
    grid-template-columns: 100%;
    gap: var(--gap-md);
  }

  .cart__form--loading {
    opacity: 0.5;
    pointer-events: none;
  }

  @media (width > 750px) {
    .cart__header {
      padding: var(--gap-lg) 0;
    }

    .cart__form {
      grid-template-columns: 60% calc(40% - var(--gap-lg));
      gap: var(--gap-lg);
    }
  }

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

  .cart__footer {
    height: fit-content;
  }

  .cart__footer > *:not(:last-child) {
    margin-bottom: var(--padding-sm);
  }

  .cart__footer .accordion__content,
  .cart__footer .accordion__header {
    padding: var(--padding-xxs) 0;
  }

  /* Totals */

  .cart__totals,
  .cart__reductions {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }

  .cart__totals > * {
    color: rgb(var(--color-foreground));
    margin: 0;
    line-height: 1;
  }

  .cart__reductions p,
  .cart__totals p {
    font-weight: 500;
    margin: 0;
    line-height: normal;
  }

  .cart__reductions p,
  .cart__totals p,
  .cart__reductions-value,
  .cart__totals-value {
    font-size: var(--font-body--size-emphasized);
  }

  /* CTAs */

  .cart__ctas {
    text-align: center;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
  }

  .cart__ctas button {
    width: 100%;
  }

  /* Item */

  .cart__item {
    background-color: var(--color-background);
    color: var(--color-foreground);
    display: flex;
    gap: var(--gap-sm);
    align-items: flex-start;
    max-width: 100%;
  }

  .cart__item > a {
    display: flex;
    align-items: center;
  }

  .cart__item img {
    width: var(--cart-item-image-width);
    object-fit: cover;
    background-color: white;
    max-width: fit-content;
    border-radius: calc(var(--card-border-radius) - var(--padding-sm));
  }

  .cart__item.card {
    padding: var(--padding-sm);

    img {
      border-radius: calc(var(--card-border-radius) - var(--padding-sm));
    }
  }

  .cart__item-options {
    line-height: normal;
    font-size: var(--font-body--size-small);
    word-break: break-word;
    color: rgba(var(--color-foreground), 0.8);
  }

  .cart__item-options .cart__item-option:not(:last-child) {
    margin-bottom: var(--padding-xs);
  }

  .cart__item-option {
    margin: 0;
  }

  .cart__item-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 5px;
  }

  .cart__item-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: var(--cart-item-image-width);
    gap: var(--gap-sm);
  }

  .cart__item-name {
    text-decoration: none;
    display: block;
    width: calc(100% + 60px);
    font-size: var(--font-body--size);
    color: rgb(var(--color-foreground));
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
    transition: var(--animation-link-hover);

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }

  .cart__item-prices {
    position: relative;
    width: 100%;
  }

  .cart__item-prices.loading {
    width: max-content;
  }

  .cart__item-price {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    flex-wrap: wrap;
    font-size: var(--font-body--size-small);
    color: rgb(var(--color-foreground));
  }

  .cart__item-price > * {
    display: block;
    margin: 0;
    padding: 0;
    line-height: normal;
  }

  .cart__item-discounted-prices {
    display: flex;
    align-self: center;
    gap: 6px;
    line-height: normal;
  }

  .cart__item-compare-price {
    opacity: 0.7;
  }

  .cart__item--no-remove-button .cart__item-actions-wrapper {
    justify-content: flex-end;
  }

  .cart__item--no-remove-button .cart__item-name {
    width: calc(100% + var(--cart-item-image-width));
  }

  @media screen and (max-width: 350px) {
    .cart__item--no-remove-button .cart__item-name {
      width: calc(100% + 75px);
    }
  }

  @media screen and (max-width: 350px) {
    .cart__item img {
      width: var(--cart-item-image-width);
      max-height: calc(var(--cart-item-image-width) * 1.2);
    }

    .cart__item-content {
      gap: 5px;
    }

    .cart__item-wrapper {
      min-height: calc(var(--cart-item-image-width) * 1.2);
    }
    .cart__item-name {
      width: calc(100% + 50px);
    }

    .cart__item-prices {
      width: 100%;
    }
  }

  /* Quantity & Remove Button */

  .cart__item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cart__item-actions-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    gap: 5px;
  }

  .cart__item-actions-wrapper .button,
  .cart__item-actions-wrapper .quantity-selector {
    border: var(--inputs-border-width) solid var(--color-border);
  }

  @media screen and (max-width: 749px) {
    .cart__item-actions-wrapper {
      flex-wrap: wrap;
    }
  }

  /* Discounts */

  .cart__discounts {
    margin-bottom: 0;
  }

  .cart__discount {
    margin-bottom: var(--padding-sm);
  }

  .cart__item-discounts,
  .cart__discounts {
    font-size: 12px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .cart__item-discount,
  .cart__discount {
    min-width: max-content;
    gap: var(--gap-xs);
  }

  .icon-discount {
    color: rgb(var(--color-foreground));
    width: 12px;
    height: 12px;
    margin-right: 7px;
  }

  /* .cart__item-discount span {
  max-width: 70px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
} */

  @media screen and (max-width: 750px) {
    .cart__discounts {
      overflow: scroll;
      flex-wrap: nowrap;
    }

    .cart__discounts::-webkit-scrollbar {
      height: 3px;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:cdp-benefits (INDEX:5) */
.sm-bn {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-bn__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sm-bn__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  text-align: center;
  margin: 0 0 14px;
}
.sm-bn__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-bn__sub {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}
.sm-bn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sm-bn__card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 26px 22px;
}
.sm-bn__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  margin: 0 0 12px;
}
.sm-bn__title {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
  letter-spacing: -0.3px;
}
.sm-bn__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media (max-width: 990px) { .sm-bn__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) { .sm-bn__grid { grid-template-columns: 1fr; } .sm-bn { padding: 56px 0; } }
/* END_SECTION:cdp-benefits */

/* START_SECTION:cdp-comparison (INDEX:7) */
.sm-cmp {
  background: #fafafa;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-cmp__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.sm-cmp__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  text-align: center;
  margin: 0 0 14px;
}
.sm-cmp__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-cmp__heading em { font-style: normal; color: var(--sm-accent, #6366F1); }
.sm-cmp__sub {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 36px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}
.sm-cmp__table {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
}
.sm-cmp__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid #f0f0f0;
}
.sm-cmp__row--head { background: #111; color: #fff; border-top: 0; }
.sm-cmp__cell { padding: 16px 18px; font-size: 14px; }
.sm-cmp__row--head .sm-cmp__cell {
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sm-cmp__cell--label { color: #222; }
.sm-cmp__cell--us, .sm-cmp__cell--them { text-align: center; font-size: 18px; }
.sm-cmp__yes { color: var(--sm-accent, #6366F1); font-weight: 900; }
.sm-cmp__no { color: #ccc; font-weight: 400; }
.sm-cmp__row--head .sm-cmp__cell--us, .sm-cmp__row--head .sm-cmp__cell--them { font-size: 11px; }
@media (max-width: 549px) {
  .sm-cmp__cell { padding: 14px 10px; font-size: 13px; }
  .sm-cmp { padding: 56px 0; }
}
/* END_SECTION:cdp-comparison */

/* START_SECTION:cdp-direct-bargain (INDEX:8) */
.cdp-d { width: 100%; }
.cdp-d__topbar { text-align: center; padding: 11px 16px; font-size: 11px; font-weight: 500; letter-spacing: 0.2px; }
.cdp-d__hero { display: flex; flex-direction: column; max-width: 1120px; margin: 0 auto; padding: 40px 24px 56px; gap: 36px; }
.cdp-d__hero-img { width: 100%; max-width: 480px; margin: 0 auto; position: relative; }
.cdp-d__hero-img img { width: 100%; height: auto; display: block; }
.cdp-d__hero-img::before { content: ''; position: absolute; inset: -20px; z-index: -1; pointer-events: none; }
.cdp-d__hero-copy { display: flex; flex-direction: column; }
.cdp-d__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 18px; }
.cdp-d__headline { font-size: clamp(34px, 6vw, 52px); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 18px; }
.cdp-d__sub { font-size: 17px; line-height: 1.5; margin-bottom: 30px; max-width: 480px; letter-spacing: -0.1px; }
.cdp-d__price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 4px; }
.cdp-d__price-strike { font-size: 22px; text-decoration: line-through; font-weight: 500; letter-spacing: -0.5px; }
.cdp-d__price-now { font-size: 56px; font-weight: 800; letter-spacing: -2.5px; line-height: 1; }
.cdp-d__price-note { font-size: 13px; letter-spacing: 0.1px; margin-bottom: 28px; font-weight: 500; }
.cdp-d__bullets { list-style: none; margin: 0 0 32px; padding: 0; }
.cdp-d__bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; margin-bottom: 12px; letter-spacing: -0.1px; }
.cdp-d__bullets li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px; }
.cdp-d__cta { display: flex; align-items: center; justify-content: center; width: 100%; color: #fff; font-weight: 600; font-size: 16px; padding: 18px 32px; border-radius: 14px; text-decoration: none; text-align: center; letter-spacing: 0.1px; transition: transform 0.18s ease, box-shadow 0.18s ease; border: none; cursor: pointer; min-height: 56px; }
.cdp-d__cta:hover { transform: translateY(-1px); }
.cdp-d__cta:active { transform: translateY(0); }
.cdp-d__trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 18px; font-size: 12px; letter-spacing: 0.1px; }
.cdp-d__trust span { display: inline-flex; align-items: center; gap: 6px; }
.cdp-d__trust svg { width: 13px; height: 13px; flex-shrink: 0; }
.cdp-d__bf { max-width: 720px; margin: 0 auto; padding: 64px 24px 72px; text-align: center; }
.cdp-d__bf h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; letter-spacing: -0.8px; margin-bottom: 18px; }
.cdp-d__bf-p { font-size: 16px; line-height: 1.6; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cdp-d__bf-p p { margin-bottom: 12px; }
.cdp-d__bf-p p:last-child { margin-bottom: 0; }
.cdp-d__bf-img { width: 100%; max-width: 560px; margin: 32px auto; display: block; height: auto; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04); }
.cdp-d__cta--secondary { max-width: 460px; margin: 32px auto 0; }
.cdp-d__legal { padding: 56px 24px; text-align: center; }
.cdp-d__legal-inner { max-width: 720px; margin: 0 auto; }
.cdp-d__legal p { font-size: 11px; line-height: 1.85; margin: 0 0 10px; letter-spacing: 0.1px; }
.cdp-d__legal p:last-child { margin-bottom: 0; }
.cdp-d__legal strong { font-weight: 600; }
.cdp-d__legal a { text-decoration: underline; }
@media (min-width: 760px) {
  .cdp-d__hero { flex-direction: row; padding: 72px 32px 88px; gap: 72px; align-items: center; }
  .cdp-d__hero-img { flex: 1; max-width: 520px; margin: 0; }
  .cdp-d__hero-copy { flex: 1; }
}
/* END_SECTION:cdp-direct-bargain */

/* START_SECTION:cdp-direct-multifunc (INDEX:9) */
.cdp-d { width: 100%; }
.cdp-d__topbar { text-align: center; padding: 11px 16px; font-size: 11px; font-weight: 500; letter-spacing: 0.2px; }
.cdp-d__hero { display: flex; flex-direction: column; max-width: 1120px; margin: 0 auto; padding: 40px 24px 56px; gap: 36px; }
.cdp-d__hero-img { width: 100%; max-width: 480px; margin: 0 auto; position: relative; }
.cdp-d__hero-img img { width: 100%; height: auto; display: block; }
.cdp-d__hero-img::before { content: ''; position: absolute; inset: -20px; z-index: -1; pointer-events: none; }
.cdp-d__hero-copy { display: flex; flex-direction: column; }
.cdp-d__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 18px; }
.cdp-d__headline { font-size: clamp(34px, 6vw, 52px); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 18px; }
.cdp-d__sub { font-size: 17px; line-height: 1.5; margin-bottom: 24px; max-width: 480px; letter-spacing: -0.1px; }
.cdp-d__funcs { font-size: 13px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; margin-bottom: 24px; }
.cdp-d__funcs-sep { margin: 0 6px; font-weight: 400; }
.cdp-d__price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 4px; }
.cdp-d__price-strike { font-size: 22px; text-decoration: line-through; font-weight: 500; letter-spacing: -0.5px; }
.cdp-d__price-now { font-size: 56px; font-weight: 800; letter-spacing: -2.5px; line-height: 1; }
.cdp-d__price-note { font-size: 13px; letter-spacing: 0.1px; margin-bottom: 28px; font-weight: 500; }
.cdp-d__bullets { list-style: none; margin: 0 0 32px; padding: 0; }
.cdp-d__bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; margin-bottom: 12px; letter-spacing: -0.1px; }
.cdp-d__bullets li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px; }
.cdp-d__cta { display: flex; align-items: center; justify-content: center; width: 100%; color: #fff; font-weight: 600; font-size: 16px; padding: 18px 32px; border-radius: 14px; text-decoration: none; text-align: center; letter-spacing: 0.1px; transition: transform 0.18s ease, box-shadow 0.18s ease; border: none; cursor: pointer; min-height: 56px; }
.cdp-d__cta:hover { transform: translateY(-1px); }
.cdp-d__cta:active { transform: translateY(0); }
.cdp-d__trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 18px; font-size: 12px; letter-spacing: 0.1px; }
.cdp-d__trust span { display: inline-flex; align-items: center; gap: 6px; }
.cdp-d__trust svg { width: 13px; height: 13px; flex-shrink: 0; }
.cdp-d__bf { max-width: 720px; margin: 0 auto; padding: 64px 24px 72px; text-align: center; }
.cdp-d__bf h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; letter-spacing: -0.8px; margin-bottom: 18px; }
.cdp-d__bf-p { font-size: 16px; line-height: 1.6; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cdp-d__bf-p p { margin-bottom: 12px; }
.cdp-d__bf-p p:last-child { margin-bottom: 0; }
.cdp-d__bf-img { width: 100%; max-width: 560px; margin: 32px auto; display: block; height: auto; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04); }
.cdp-d__cta--secondary { max-width: 460px; margin: 32px auto 0; }
.cdp-d__legal { padding: 56px 24px; text-align: center; }
.cdp-d__legal-inner { max-width: 720px; margin: 0 auto; }
.cdp-d__legal p { font-size: 11px; line-height: 1.85; margin: 0 0 10px; letter-spacing: 0.1px; }
.cdp-d__legal p:last-child { margin-bottom: 0; }
.cdp-d__legal strong { font-weight: 600; }
.cdp-d__legal a { text-decoration: underline; }
@media (min-width: 760px) {
  .cdp-d__hero { flex-direction: row; padding: 72px 32px 88px; gap: 72px; align-items: center; }
  .cdp-d__hero-img { flex: 1; max-width: 520px; margin: 0; }
  .cdp-d__hero-copy { flex: 1; }
}
/* END_SECTION:cdp-direct-multifunc */

/* START_SECTION:cdp-direct-nostalgia (INDEX:10) */
.cdp-d { width: 100%; }
.cdp-d__topbar { text-align: center; padding: 11px 16px; font-size: 11px; font-weight: 500; letter-spacing: 0.2px; }
.cdp-d__hero { display: flex; flex-direction: column; max-width: 1120px; margin: 0 auto; padding: 40px 24px 56px; gap: 36px; }
.cdp-d__hero-img { width: 100%; max-width: 480px; margin: 0 auto; position: relative; }
.cdp-d__hero-img img { width: 100%; height: auto; display: block; }
.cdp-d__hero-img::before { content: ''; position: absolute; inset: -20px; z-index: -1; pointer-events: none; }
.cdp-d__hero-copy { display: flex; flex-direction: column; }
.cdp-d__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 18px; }
.cdp-d__headline { font-size: clamp(34px, 6vw, 52px); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 18px; }
.cdp-d__sub { font-size: 17px; line-height: 1.5; margin-bottom: 30px; max-width: 480px; letter-spacing: -0.1px; }
.cdp-d__price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 4px; }
.cdp-d__price-strike { font-size: 22px; text-decoration: line-through; font-weight: 500; letter-spacing: -0.5px; }
.cdp-d__price-now { font-size: 56px; font-weight: 800; letter-spacing: -2.5px; line-height: 1; }
.cdp-d__price-note { font-size: 13px; letter-spacing: 0.1px; margin-bottom: 28px; font-weight: 500; }
.cdp-d__bullets { list-style: none; margin: 0 0 32px; padding: 0; }
.cdp-d__bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; margin-bottom: 12px; letter-spacing: -0.1px; }
.cdp-d__bullets li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px; }
.cdp-d__cta { display: flex; align-items: center; justify-content: center; width: 100%; color: #fff; font-weight: 600; font-size: 16px; padding: 18px 32px; border-radius: 14px; text-decoration: none; text-align: center; letter-spacing: 0.1px; transition: transform 0.18s ease, box-shadow 0.18s ease; border: none; cursor: pointer; min-height: 56px; }
.cdp-d__cta:hover { transform: translateY(-1px); }
.cdp-d__cta:active { transform: translateY(0); }
.cdp-d__trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 18px; font-size: 12px; letter-spacing: 0.1px; }
.cdp-d__trust span { display: inline-flex; align-items: center; gap: 6px; }
.cdp-d__trust svg { width: 13px; height: 13px; flex-shrink: 0; }
.cdp-d__bf { max-width: 720px; margin: 0 auto; padding: 64px 24px 72px; text-align: center; }
.cdp-d__bf h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; letter-spacing: -0.8px; margin-bottom: 18px; }
.cdp-d__bf-p { font-size: 16px; line-height: 1.6; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cdp-d__bf-p p { margin-bottom: 12px; }
.cdp-d__bf-p p:last-child { margin-bottom: 0; }
.cdp-d__bf-img { width: 100%; max-width: 560px; margin: 32px auto; display: block; height: auto; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04); }
.cdp-d__cta--secondary { max-width: 460px; margin: 32px auto 0; }
.cdp-d__legal { padding: 56px 24px; text-align: center; }
.cdp-d__legal-inner { max-width: 720px; margin: 0 auto; }
.cdp-d__legal p { font-size: 11px; line-height: 1.85; margin: 0 0 10px; letter-spacing: 0.1px; }
.cdp-d__legal p:last-child { margin-bottom: 0; }
.cdp-d__legal strong { font-weight: 600; }
.cdp-d__legal a { text-decoration: underline; }
@media (min-width: 760px) {
  .cdp-d__hero { flex-direction: row; padding: 72px 32px 88px; gap: 72px; align-items: center; }
  .cdp-d__hero-img { flex: 1; max-width: 520px; margin: 0; }
  .cdp-d__hero-copy { flex: 1; }
}
/* END_SECTION:cdp-direct-nostalgia */

/* START_SECTION:cdp-faq (INDEX:11) */
.sm-fq {
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-fq__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.sm-fq__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  text-align: center;
  margin: 0 0 14px;
}
.sm-fq__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-fq__sub {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

/* Outer drawer (wraps the whole question list) */
.sm-fq__drawer {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.sm-fq__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 4px;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease;
}
.sm-fq__toggle::-webkit-details-marker { display: none; }
.sm-fq__toggle-text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}
.sm-fq__toggle:hover .sm-fq__toggle-text { color: var(--sm-accent, #6366F1); }
.sm-fq__drawer[open] .sm-fq__toggle-text { color: var(--sm-accent, #6366F1); }
.sm-fq__toggle-chev {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.sm-fq__toggle-chev::before, .sm-fq__toggle-chev::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 1.5px;
  background: #999;
  transition: background 0.2s ease;
}
.sm-fq__toggle-chev::before { left: 0; transform: rotate(45deg); transform-origin: left center; }
.sm-fq__toggle-chev::after { right: 0; transform: rotate(-45deg); transform-origin: right center; }
.sm-fq__toggle:hover .sm-fq__toggle-chev::before,
.sm-fq__toggle:hover .sm-fq__toggle-chev::after { background: var(--sm-accent, #6366F1); }
.sm-fq__drawer[open] .sm-fq__toggle-chev { transform: rotate(180deg); }
.sm-fq__drawer[open] .sm-fq__toggle-chev::before,
.sm-fq__drawer[open] .sm-fq__toggle-chev::after { background: var(--sm-accent, #6366F1); }

/* Question list (inside the drawer) */
.sm-fq__list {
  border-top: 1px solid #f5f5f5;
  padding: 4px 0 8px;
}
.sm-fq__item {
  border-bottom: 1px solid #f5f5f5;
}
.sm-fq__item:last-child { border-bottom: 0; }
.sm-fq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  list-style: none;
  letter-spacing: -0.1px;
}
.sm-fq__q::-webkit-details-marker { display: none; }
.sm-fq__q-text { flex: 1; padding-right: 16px; }
.sm-fq__chev {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sm-fq__chev::before, .sm-fq__chev::after {
  content: '';
  position: absolute;
  background: #999;
  transition: transform 0.2s ease, background 0.2s ease;
}
.sm-fq__chev::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.sm-fq__chev::after { left: 6px; top: 0; width: 1.5px; height: 14px; }
.sm-fq__item[open] .sm-fq__chev::after { transform: scaleY(0); }
.sm-fq__item[open] .sm-fq__chev::before { background: var(--sm-accent, #6366F1); }
.sm-fq__a {
  padding: 0 4px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
.sm-fq__a p { margin: 0 0 10px; }
.sm-fq__a p:last-child { margin-bottom: 0; }

/* CTA */
.sm-fq__cta-wrap { margin-top: 44px; text-align: center; }
.sm-fq__cta {
  display: inline-block;
  background: var(--sm-accent, #6366F1);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: opacity 0.15s ease;
  min-width: 280px;
}
.sm-fq__cta:hover { opacity: 0.9; }
.sm-fq__cta-note { margin: 14px 0 0; font-size: 11px; color: #999; letter-spacing: 0.5px; text-transform: uppercase; }
@media (max-width: 549px) {
  .sm-fq { padding: 56px 0; }
  .sm-fq__cta { width: 100%; min-width: 0; }
}
/* END_SECTION:cdp-faq */

/* START_SECTION:cdp-hero-split (INDEX:12) */
.sm-hsp {
  background: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  border-bottom: 1px solid #f0f0f0;
}
.sm-hsp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sm-hsp__copy { display: flex; flex-direction: column; }
.sm-hsp__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  margin: 0 0 18px;
}
.sm-hsp__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 18px;
  color: #111;
}
.sm-hsp__title em {
  font-style: normal;
  color: var(--sm-accent, #6366F1);
}
.sm-hsp__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 26px;
  max-width: 460px;
}
.sm-hsp__bullets { list-style: none; margin: 0 0 28px; padding: 0; }
.sm-hsp__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: #333;
}
.sm-hsp__check {
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  color: var(--sm-accent, #6366F1);
  margin-top: 1px;
}
.sm-hsp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  flex-wrap: wrap;
}
.sm-hsp__price-strike {
  font-size: 18px;
  text-decoration: line-through;
  color: #999;
}
.sm-hsp__price-now {
  font-size: 40px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
}
.sm-hsp__price-note {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sm-hsp__cta {
  display: inline-block;
  background: var(--sm-accent, #6366F1);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  align-self: flex-start;
  min-width: 280px;
  text-align: center;
}
.sm-hsp__cta:hover { opacity: 0.9; }
.sm-hsp__trust {
  margin: 14px 0 0;
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sm-hsp__rating {
  margin: 12px 0 0;
  font-size: 12px;
  color: #777;
}
.sm-hsp__stars { color: #fbbf24; letter-spacing: 2px; margin-right: 6px; }
.sm-hsp__media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sm-hsp__img { max-width: 100%; height: auto; }
.sm-hsp__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
}
@media (max-width: 749px) {
  .sm-hsp__inner { grid-template-columns: 1fr; gap: 36px; padding: 44px 22px; }
  .sm-hsp__media { order: -1; max-width: 320px; margin: 0 auto; }
  .sm-hsp__title { font-size: 28px; letter-spacing: -0.6px; }
  .sm-hsp__price-now { font-size: 32px; }
  .sm-hsp__cta { width: 100%; min-width: 0; align-self: stretch; }
}
/* END_SECTION:cdp-hero-split */

/* START_SECTION:cdp-hero (INDEX:13) */
.sm-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-hero__media { position: absolute; inset: 0; z-index: 0; }
.sm-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(var(--sm-blur, 0));
  transform: scale(1.02);
}
.sm-hero__placeholder { width: 100%; height: 100%; background: #0d0d0d; }
.sm-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0, var(--sm-overlay, 0.7)) 0%,
    rgba(0,0,0, calc(var(--sm-overlay, 0.7) * 0.65)) 60%,
    rgba(0,0,0, calc(var(--sm-overlay, 0.7) * 0.3)) 100%
  );
}
.sm-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px;
}
.sm-hero__content { max-width: 540px; }
.sm-hero__eyebrow {
  display: inline-block;
  background: var(--sm-accent, #6366F1);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin: 0 0 22px;
}
.sm-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
}
.sm-hero__sub {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
}
.sm-hero__bullets { list-style: none; margin: 0 0 28px; padding: 0; }
.sm-hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.92);
}
.sm-hero__check {
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  color: var(--sm-accent, #6366F1);
  margin-top: 1px;
}
.sm-hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.sm-hero__price-strike {
  font-size: 18px;
  text-decoration: line-through;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.sm-hero__price-now {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.sm-hero__price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sm-hero__cta {
  display: inline-block;
  background: var(--sm-accent, #6366F1);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  min-width: 260px;
  text-align: center;
}
.sm-hero__cta:hover { opacity: 0.9; }
.sm-hero__rating {
  margin: 18px 0 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}
.sm-hero__stars { color: #fbbf24; letter-spacing: 2px; margin-right: 4px; }
.sm-hero__trust {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 749px) {
  .sm-hero { min-height: 540px; }
  .sm-hero__inner { padding: 44px 22px; }
  .sm-hero__title { font-size: 28px; letter-spacing: -0.6px; }
  .sm-hero__price-now { font-size: 32px; }
  .sm-hero__cta { width: 100%; min-width: 0; }
}
/* END_SECTION:cdp-hero */

/* START_SECTION:cdp-legal (INDEX:14) */
.sm-lg {
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-lg__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sm-lg__heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.sm-lg__body {
  font-size: 11.5px;
  line-height: 1.85;
}
.sm-lg__body p { margin: 0 0 10px; }
.sm-lg__body p:last-child { margin-bottom: 0; }
.sm-lg__body strong { font-weight: 700; }
.sm-lg__body a { text-decoration: underline; }
@media (max-width: 549px) {
  .sm-lg { padding: 40px 0; }
  .sm-lg__body { font-size: 11px; }
}
/* END_SECTION:cdp-legal */

/* START_SECTION:cdp-marquee (INDEX:15) */
.sm-marq {
  background: var(--sm-accent, #6366F1);
  color: var(--sm-fg, #ffffff);
  overflow: hidden;
  padding: 11px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-marq__track {
  display: flex;
  width: max-content;
  animation: sm-marq-scroll 36s linear infinite;
}
.sm-marq__row { display: flex; flex-shrink: 0; }
.sm-marq__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sm-marq__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  opacity: 0.85;
}
@keyframes sm-marq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 749px) {
  .sm-marq__item { font-size: 11px; padding: 0 18px; letter-spacing: 1px; }
}
/* END_SECTION:cdp-marquee */

/* START_SECTION:cdp-payments (INDEX:16) */
.sm-pm {
  background: #fafafa;
  padding: 32px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-pm__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sm-pm__heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 18px;
}
.sm-pm__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sm-pm__item {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.sm-pm__img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.95;
}
.sm-pm__pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
}
@media (max-width: 549px) {
  .sm-pm { padding: 24px 0; }
  .sm-pm__list { gap: 14px; }
}
/* END_SECTION:cdp-payments */

/* START_SECTION:cdp-product (INDEX:17) */
.cdpr { background: #fff; padding: 80px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; font-family: 'Helvetica Neue', Arial, sans-serif; }
.cdpr__wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.cdpr__media { position: relative; background: #fafafa; border: 1px solid #f0f0f0; border-radius: 8px; overflow: hidden; height: 500px; }
.cdpr__empty { display: flex; align-items: center; justify-content: center; height: 100%; color: #aaa; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; padding: 24px; }
.cdpr__gallery { position: relative; height: 100%; width: 100%; }
.cdpr__track { display: flex; width: 100%; height: 100%; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cdpr__track::-webkit-scrollbar { display: none; }
.cdpr__slide { flex: 0 0 100%; width: 100%; height: 100%; scroll-snap-align: start; display: flex; align-items: center; justify-content: center; padding: 24px; box-sizing: border-box; }
.cdpr__img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.cdpr__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.08); border-radius: 50%; background: rgba(255,255,255,0.95); color: #111; font-size: 22px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; padding: 0; line-height: 1; transition: background 0.15s ease; }
.cdpr__nav:hover { background: #fff; }
.cdpr__nav--prev { left: 12px; }
.cdpr__nav--next { right: 12px; }
.cdpr__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; padding: 6px 10px; background: rgba(255,255,255,0.85); border-radius: 999px; z-index: 2; }
.cdpr__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,0.25); border: 0; cursor: pointer; padding: 0; transition: width 0.25s ease, background 0.25s ease; }
.cdpr__dot.is-active { background: var(--cdpr-accent, #6366F1); width: 18px; border-radius: 4px; }
.cdpr__details { display: flex; flex-direction: column; }
.cdpr__rating { margin: 0 0 14px; font-size: 12px; color: #777; letter-spacing: 0.3px; display: flex; align-items: center; gap: 6px; }
.cdpr__stars { color: #fbbf24; letter-spacing: 2px; }
.cdpr__badge { display: inline-block; font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--cdpr-accent, #6366F1); margin: 0 0 14px; align-self: flex-start; }
.cdpr__title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; line-height: 1.1; letter-spacing: -0.8px; margin: 0 0 12px; color: #111; }
.cdpr__tagline { font-size: 15px; line-height: 1.55; color: #666; margin: 0 0 22px; max-width: 440px; }
.cdpr__pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 24px; }
.cdpr__pill { font-size: 11px; font-weight: 700; padding: 6px 11px; border-radius: 3px; background: #f5f5f5; color: #444; letter-spacing: 0.3px; border: 1px solid #ececec; }
.cdpr__price { display: flex; align-items: baseline; gap: 12px; margin: 0 0 22px; flex-wrap: wrap; }
.cdpr__price-strike { font-size: 16px; text-decoration: line-through; color: #999; }
.cdpr__price-now { font-size: 36px; font-weight: 900; color: #111; letter-spacing: -1px; }
.cdpr__price-inst { font-size: 12px; color: #777; letter-spacing: 0.3px; }
.cdpr__cta { display: block; width: 100%; text-align: center; background: var(--cdpr-accent, #6366F1); color: #fff; font-weight: 900; font-size: 14px; padding: 19px 24px; border-radius: 3px; text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; transition: opacity 0.15s ease; }
.cdpr__cta:hover { opacity: 0.9; }
.cdpr__delivery { margin: 14px 0 4px; font-size: 12px; color: #15803d; font-weight: 700; letter-spacing: 0.3px; }
.cdpr__trust { margin: 4px 0 0; font-size: 11px; color: #999; letter-spacing: 0.3px; }
@media (max-width: 749px) {
  .cdpr { padding: 56px 0; }
  .cdpr__wrap { grid-template-columns: 1fr; gap: 32px; }
  .cdpr__media { height: 380px; }
  .cdpr__nav { width: 32px; height: 32px; font-size: 18px; }
}
/* END_SECTION:cdp-product */

/* START_SECTION:cdp-reassurance (INDEX:18) */
.sm-rs {
  background: var(--sm-bg, #0d0d0d);
  color: var(--sm-fg, #fff);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-rs__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
}
.sm-rs__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sm-rs__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.sm-rs__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--sm-icon, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-rs__icon svg {
  display: block;
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
}
.sm-rs__copy {
  min-width: 0;
  flex: 1 1 auto;
}
.sm-rs__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0;
  color: var(--sm-fg, #fff);
  line-height: 1.25;
}
.sm-rs__desc {
  font-size: 11px;
  line-height: 1.4;
  margin: 2px 0 0;
  color: var(--sm-fg, #fff);
  opacity: 0.6;
  letter-spacing: 0.1px;
}
@media (max-width: 990px) {
  .sm-rs__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sm-rs__inner { padding: 20px 24px; }
}
@media (max-width: 480px) {
  .sm-rs__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sm-rs__title { font-size: 12px; }
  .sm-rs__desc { display: none; }
}
/* END_SECTION:cdp-reassurance */

/* START_SECTION:cdp-reviews (INDEX:19) */
.sm-rv {
  background: {{ section.settings.bg_color | default: '#FAF8F4' }};
  padding: 80px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-rv__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sm-rv__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  text-align: center;
  margin: 0 0 14px;
}
.sm-rv__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-rv__sub {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 28px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}
.sm-rv__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  max-width: 360px;
}
.sm-rv__summary-rating {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 6px;
}
.sm-rv__big-stars { color: #fbbf24; font-size: 22px; letter-spacing: 3px; }
.sm-rv__big-num { font-size: 26px; font-weight: 900; color: #111; letter-spacing: -0.5px; }
.sm-rv__summary-text { margin: 0; font-size: 12px; color: #777; letter-spacing: 0.3px; text-transform: uppercase; font-weight: 700; }

/* Drawer */
.sm-rv__drawer {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.sm-rv__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 4px;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease;
}
.sm-rv__toggle::-webkit-details-marker { display: none; }
.sm-rv__toggle-text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}
.sm-rv__toggle:hover .sm-rv__toggle-text { color: var(--sm-accent, #6366F1); }
.sm-rv__drawer[open] .sm-rv__toggle-text { color: var(--sm-accent, #6366F1); }
.sm-rv__chev {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.sm-rv__chev::before, .sm-rv__chev::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 1.5px;
  background: #999;
  transition: background 0.2s ease;
}
.sm-rv__chev::before { left: 0; transform: rotate(45deg); transform-origin: left center; }
.sm-rv__chev::after { right: 0; transform: rotate(-45deg); transform-origin: right center; }
.sm-rv__toggle:hover .sm-rv__chev::before, .sm-rv__toggle:hover .sm-rv__chev::after { background: var(--sm-accent, #6366F1); }
.sm-rv__drawer[open] .sm-rv__chev { transform: rotate(180deg); }
.sm-rv__drawer[open] .sm-rv__chev::before, .sm-rv__drawer[open] .sm-rv__chev::after { background: var(--sm-accent, #6366F1); }

/* Cards */
.sm-rv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0 8px;
}
.sm-rv__card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
}
.sm-rv__rating { display: flex; gap: 1px; margin: 0 0 12px; }
.sm-rv__star { color: #e5e7eb; font-size: 14px; }
.sm-rv__star--on { color: #fbbf24; }
.sm-rv__title {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.sm-rv__text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 18px;
  flex: 1 1 auto;
}
.sm-rv__meta { border-top: 1px solid #f0f0f0; padding-top: 12px; }
.sm-rv__author { font-size: 13px; color: #1f2937; margin: 0 0 4px; letter-spacing: -0.1px; }
.sm-rv__author strong { font-weight: 700; }
.sm-rv__details { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0; font-size: 11px; color: #999; }
.sm-rv__verified { display: inline-flex; align-items: center; gap: 4px; color: #15803d; font-weight: 700; letter-spacing: 0.2px; }
.sm-rv__date { color: #999; letter-spacing: 0.2px; }

@media (max-width: 990px) { .sm-rv__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) { .sm-rv { padding: 56px 0; } .sm-rv__grid { grid-template-columns: 1fr; } }
/* END_SECTION:cdp-reviews */

/* START_SECTION:cdp-specs (INDEX:20) */
.sm-sp {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-sp__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.sm-sp__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  text-align: center;
  margin: 0 0 14px;
}
.sm-sp__heading {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-sp__sub {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 28px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

/* Drawer */
.sm-sp__drawer {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.sm-sp__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 4px;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease;
}
.sm-sp__toggle::-webkit-details-marker { display: none; }
.sm-sp__toggle:hover { color: var(--sm-accent, #6366F1); }
.sm-sp__toggle-text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}
.sm-sp__toggle:hover .sm-sp__toggle-text { color: var(--sm-accent, #6366F1); }
.sm-sp__drawer[open] .sm-sp__toggle-text { color: var(--sm-accent, #6366F1); }

/* Chevron — down arrow that flips up when open */
.sm-sp__chev {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.sm-sp__chev::before, .sm-sp__chev::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 1.5px;
  background: #999;
  transition: background 0.2s ease;
}
.sm-sp__chev::before { left: 0; transform: rotate(45deg); transform-origin: left center; }
.sm-sp__chev::after { right: 0; transform: rotate(-45deg); transform-origin: right center; }
.sm-sp__toggle:hover .sm-sp__chev::before,
.sm-sp__toggle:hover .sm-sp__chev::after { background: var(--sm-accent, #6366F1); }
.sm-sp__drawer[open] .sm-sp__chev { transform: rotate(180deg); }
.sm-sp__drawer[open] .sm-sp__chev::before,
.sm-sp__drawer[open] .sm-sp__chev::after { background: var(--sm-accent, #6366F1); }

/* Table — only shown when drawer is open */
.sm-sp__table {
  border-top: 1px solid #f5f5f5;
  padding: 4px 0 16px;
}
.sm-sp__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 16px 4px;
  border-top: 1px solid #f5f5f5;
  align-items: baseline;
}
.sm-sp__row:first-child { border-top: 0; }
.sm-sp__label {
  font-weight: 900;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sm-sp__value {
  font-size: 15px;
  color: #222;
  line-height: 1.5;
}
@media (max-width: 549px) {
  .sm-sp__row { grid-template-columns: 1fr; gap: 4px; }
  .sm-sp { padding: 56px 0; }
  .sm-sp__toggle-text { font-size: 12px; letter-spacing: 1.5px; }
}
/* END_SECTION:cdp-specs */

/* START_SECTION:cdp-timeline (INDEX:21) */
.sm-tl {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-tl__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sm-tl__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #6366F1);
  text-align: center;
  margin: 0 0 14px;
}
.sm-tl__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 48px;
  color: #111;
  line-height: 1.15;
}
.sm-tl__heading em { font-style: normal; color: var(--sm-accent, #6366F1); }
.sm-tl__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sm-tl__steps { position: relative; }
.sm-tl__step { position: relative; padding: 0 0 32px 32px; }
.sm-tl__step:last-child { padding-bottom: 0; }
.sm-tl__step::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: -14px;
  width: 1px;
  background: #e5e7eb;
  transition: background 0.4s ease;
}
.sm-tl__step:last-child::before { display: none; }
.sm-tl__step.is-active::before { background: var(--sm-accent, #6366F1); }
.sm-tl__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d4d4d4;
  transition: all 0.4s ease;
}
.sm-tl__step.is-active .sm-tl__dot { background: var(--sm-accent, #6366F1); }
.sm-tl__time {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 6px;
  transition: color 0.4s ease;
}
.sm-tl__step.is-active .sm-tl__time { color: #111; }
.sm-tl__text {
  font-size: 15px;
  line-height: 1.55;
  color: #777;
  transition: color 0.4s ease;
}
.sm-tl__step.is-active .sm-tl__text { color: #222; }
.sm-tl__media { display: flex; justify-content: center; align-items: center; }
.sm-tl__img { max-width: 100%; height: auto; }
.sm-tl__placeholder { width: 100%; aspect-ratio: 3/4; background: #fafafa; border: 1px solid #f0f0f0; border-radius: 6px; }
@media (max-width: 749px) {
  .sm-tl__grid { grid-template-columns: 1fr; gap: 40px; }
  .sm-tl__media { order: -1; max-width: 280px; margin: 0 auto; }
  .sm-tl { padding: 56px 0; }
}
/* END_SECTION:cdp-timeline */

/* START_SECTION:collection-featured (INDEX:22) */
.collection-featured {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .collection-featured .splide__arrow {
    display: none !important;
  }

  .collection-featured__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .collection-featured__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .collection-featured__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:collection-featured */

/* START_SECTION:collections-featured (INDEX:23) */
.collections-featured {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .collections-featured__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .collections-featured__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .collections-featured__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:collections-featured */

/* START_SECTION:comparison-custom (INDEX:24) */
.comparison-table {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
  .comparison-table__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }
  .comparison-table__table-wrapper {
    overflow-x: auto;
  }
  .comparison-table__table {
    border-collapse: collapse;
    width: 100%;
    background-color: transparent;
  }
/* END_SECTION:comparison-custom */

/* START_SECTION:comparison-table (INDEX:25) */
.comparison-table {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
  .comparison-table__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }
  .comparison-table__table-wrapper {
    overflow-x: auto;
  }
  .comparison-table__table {
    border-collapse: collapse;
    width: 100%;
    background-color: transparent;
  }
/* END_SECTION:comparison-table */

/* START_SECTION:custom-code (INDEX:26) */
.custom-code-section {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
/* END_SECTION:custom-code */

/* START_SECTION:custom-section (INDEX:27) */
.section-custom-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .section-custom-section .text-block[data-visual-preview-mode] {
    max-width: 100%;
  }

  .section-custom-section .image-card[data-visual-preview-mode] {
    width: 100%;
  }

  .custom-section {
    width: 100%;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    justify-content: center;
  }

  .custom-section .custom-section__inner {
    gap: var(--gap-mobile);
    width: 100%;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .custom-section--flex .custom-section__inner {
    display: flex;
    flex-direction: var(--direction-mobile);
    flex-wrap: var(--wrap-mobile);
    justify-content: var(--justify-mobile);
    align-items: var(--align_items-mobile);
    height: 100%;
  }

  .custom-section:not(.custom-section--row-mobile) > div > .custom-section__inner > .text-block-center-mobile,
  .custom-section:not(.custom-section--row-mobile) > .custom-section__inner > .text-block-center-mobile {
    width: 100%;
  }

  .custom-section--grid .custom-section__inner {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    grid-template-rows: auto;
  }

  @media (width > 750px) {
    .custom-section .custom-section__inner {
      gap: var(--gap);
    }

    .custom-section--flex .custom-section__inner {
      flex-direction: var(--direction);
      flex-wrap: var(--wrap);
      justify-content: var(--justify);
      align-items: var(--align_items);
      height: auto;
    }

    .custom-section:not(.custom-section--row-desktop) > div > .custom-section__inner > .text-block-center-desktop,
    .custom-section:not(.custom-section--row-desktop) > .custom-section__inner > .text-block-center-desktop {
      width: 100%;
    }

    .custom-section--grid .custom-section__inner {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:custom-section */

/* START_SECTION:demo-design-system (INDEX:28) */
.highlights {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
  }

  @media (width <= 1000px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
/* END_SECTION:demo-design-system */

/* START_SECTION:footer (INDEX:29) */
.footer-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .footer {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    margin-top: var(--margin-top);
  }

  .footer--top-border {
    border-top: var(--separator-border-thickness) solid var(--color-border);
  }

  .footer__content {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    grid-template-rows: auto;
    gap: var(--gap-mobile);
    width: 100%;
  }

  .footer--flex .footer__content {
    display: flex;
    flex-direction: var(--direction-mobile);
    flex-wrap: var(--wrap-mobile);
    justify-content: var(--justify-mobile);
    align-items: var(--align_items-mobile);
  }

  .footer--grid .footer__content {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    grid-template-rows: auto;
  }

  @media (width > 750px) {
    .footer__content {
      gap: var(--gap);
    }

    .footer--flex .footer__content {
      flex-direction: var(--direction);
      flex-wrap: var(--wrap);
      justify-content: var(--justify);
      align-items: var(--align_items);
    }

    .footer--grid .footer__content {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:30) */
.shopify-section-group-header-group {
    overflow: visible;
  }

  .section-header {
    position: relative;
  }

  header-component {
    display: flex;
    justify-content: center;
  }

  /* Header transparent */

  .section-header:has(.header--transparent):not(:has(.header--sticky)) {
    z-index: 3;
  }

  .header--transparent {
    margin-bottom: -100%;
  }

  .header--transparent[data-sticky-state='inactive']:not(:has(.header__menu-item--megamenu[data-open='true'])) {
    background-color: transparent;

    .header__layout {
      background-color: transparent;
      color: inherit;
      border-bottom: none;
    }

    .localization-form__language-select {
      background-color: transparent;
      color: inherit;
    }

    .header__logo-image--transparent {
      display: block;
    }

    &:has(.header__logo-image--transparent) .header__logo-image {
      display: none;
    }
  }

  .header__logo {
    display: flex;
    align-items: center;
  }

  .header__logo-image,
  .header__logo-image--transparent {
    height: var(--logo-height-mobile);
    width: var(--logo-width-mobile);
  }

  @media (width > 1000px) {
    .header__logo-image,
    .header__logo-image--transparent {
      height: var(--logo-height);
      width: var(--logo-width);
    }
  }

  .header__logo-image--transparent {
    display: none;
  }

  .header__logo-name {
    text-transform: uppercase;
    font-weight: bold;
  }

  .header__menu {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .header__menu-mobile {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
  }

  header-component:not(:has(.header__mobile-menu-overlay)) .header__menu-mobile {
    display: none;
  }

  @media (width > 1000px) {
    .header__menu-mobile {
      display: none;
    }

    .search-popup-mobile {
      display: none;
    }
  }

  .header__menu a,
  .header__menu-mobile {
    transition: var(--animation-link-hover);
  }

  .header__menu a:hover,
  .header__menu-mobile:hover {
    opacity: var(--opacity-link-hover);
  }

  .header__menu a:not(.button) {
    text-decoration: none;
    color: inherit;
  }

  .header__menu a {
    font-size: var(--font-body--size);
  }

  /* Mise en page des headers */

  .header__layout {
    border-bottom: var(--separator-border-thickness) solid var(--color-border);
  }

  .header__layout-desktop {
    display: none;
  }

  .header__layout-mobile {
    display: flex;
    width: 100%;
    max-width: var(--page-width);
    padding: 0 var(--page-margin-mobile);
  }

  @media (width > 1000px) {
    .header__layout-desktop {
      display: flex;
      width: 100%;
    }

    .header__layout-mobile {
      display: none;
    }
  }

  .header__layout--logo-center,
  .header__layout--logo-left,
  .header__layout--logo-left-menu-left,
  .header__layout--logo-center-with-two-menus,
  .header__layout--logo-center-above-menu__logo-and-icons,
  .header__layout--logo-left-above-menu__logo-and-icons {
    height: var(--header-height);
  }

  .header__layout--logo-center,
  .header__layout--logo-left,
  .header__layout--logo-left-menu-left,
  .header__layout--logo-center-with-two-menus,
  .header__layout--logo-center-above-menu,
  .header__layout--logo-left-above-menu {
    width: 100%;
  }

  .header__layout--logo-center,
  .header__layout--logo-left,
  .header__layout--logo-left-menu-left,
  .header__layout--logo-center-with-two-menus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
  }

  .header__layout--logo-left-menu-left {
    grid-template-columns: auto auto 1fr;
  }

  .header__layout--logo-center {
    .header__menu-desktop {
      justify-content: flex-start;
    }

    .header__logo {
      justify-content: center;
    }

    .header__actions {
      justify-content: flex-end;
    }
  }

  .header__layout--logo-left {
    .header__logo {
      justify-content: flex-start;
    }

    .header__menu-desktop {
      justify-content: center;
    }

    .header__actions {
      justify-content: flex-end;
    }
  }

  .header__layout--logo-left-menu-left {
    .header__logo {
      justify-content: flex-start;
    }

    .header__menu-desktop {
      justify-content: flex-start;
    }

    .header__actions {
      justify-content: flex-end;
    }
  }

  .header__layout--logo-center-above-menu {
    .header__layout--logo-center-above-menu__logo-and-icons {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 1.5rem;
      align-items: center;

      .header__logo {
        grid-column: 2;
        justify-content: center;
      }

      .header__actions {
        grid-column: 3;
        justify-content: flex-end;
      }
    }

    .header__menu-desktop {
      justify-content: center;
      width: 100%;
    }
  }

  .header__layout--logo-left-above-menu {
    .header__layout--logo-left-above-menu__logo-and-icons {
      display: grid;
      grid-template-columns: auto auto;

      .header__logo {
        grid-column: 1;
        justify-content: flex-start;
      }

      .header__actions {
        grid-column: 2;
        justify-content: flex-end;
      }
    }
  }

  .header__layout--logo-center-above-menu__menu,
  .header__layout--logo-left-above-menu__menu {
    padding-bottom: 1rem;
  }

  .header__layout--logo-center-above-menu__menu,
  .header__layout--logo-left-above-menu__menu:not(:has(.button)) {
    height: 2rem;
  }

  .header__layout--logo-center-with-two-menus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;

    .header__layout--logo-center-with-two-menus__logo-and-menus {
      grid-column: 2;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 2rem;

      & > .header__menu:first-of-type {
        justify-content: flex-end;
      }
    }

    .header__actions {
      grid-column: 3;
      justify-content: flex-end;
    }
  }

  .header__icon-count-bubble {
    position: absolute;
    bottom: -6px;
    right: -6px;
    border-radius: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }

  .header__icon-count-bubble-inner {
    background-color: var(--color-primary-button-background);
    color: var(--color-primary-button-text);
    width: 14px;
    height: 14px;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.6rem;
  }

  .header__icon-count-bubble--long {
    width: 30px;
    right: -50%;
  }

  header-component:not(.header--transparent) .header__icon-count-bubble,
  .header--transparent[data-sticky-state='active'] .header__icon-count-bubble,
  .header--transparent[data-sticky-state='inactive']:has(.header__menu-item--megamenu[data-open='true']) .header__icon-count-bubble {
    background-color: var(--color-background);
  }
/* END_SECTION:header */

/* START_SECTION:image-banner (INDEX:31) */
.image-banner-wrapper {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .image-banner-wrapper__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .image-banner-wrapper--children-cards .image-banner {
    border-radius: var(--card-border-radius);
  }

  .image-banner-wrapper .splide__arrow {
    background-color: transparent;
    border: none;

    .icon {
      color: white;
    }
  }

  .image-banner-wrapper .splide__pagination {
    bottom: 5px;

    .splide__pagination__page,
    .splide__pagination__page.is-active {
      background: white;
    }
  }
/* END_SECTION:image-banner */

/* START_SECTION:main-account (INDEX:32) */
.customer-account {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
    padding: 50px 0;
  }

  .customer-account__account {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .customer-account__account > * {
    margin-bottom: var(--margin-md);
  }

  .customer-account__orders,
  .customer-account__addresses {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .customer-account__order {
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: var(--animation-link-hover);

    &:hover {
      opacity: var(--opacity-link-hover);
    }

    .customer-account__order-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .customer-account__order-header-left {
      display: flex;
      gap: var(--gap-sm);
      flex-wrap: wrap;
    }

    .customer-account__order-number {
      font-weight: 600;
    }

    .customer-account__order-date {
      font-weight: 100;
      opacity: 0.75;
    }
  }

  .customer-account__default-address > * {
    font-style: italic;
  }
/* END_SECTION:main-account */

/* START_SECTION:main-activate-account (INDEX:33) */
.customer-activate {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
    padding: 50px 0;
  }

  .customer-activate__activate {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .customer-activate__activate > .h2 {
    margin-bottom: var(--margin-md);
  }

  .customer-activate__form {
    margin-top: var(--margin-lg);
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .customer-activate__form-actions {
    margin-top: var(--margin-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_SECTION:main-activate-account */

/* START_SECTION:main-addresses (INDEX:34) */
.customer-addresses {
    width: 100%;
    padding: 50px 0;
    display: block;
  }

  .customer-addresses__addresses-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .customer-addresses__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    margin: var(--margin-md) 0;
  }

  .checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
  }
/* END_SECTION:main-addresses */

/* START_SECTION:main-article (INDEX:35) */
.article {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .article-content {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  @media (width > 750px) {
    .article-content {
      width: 65vw;
    }
  }
/* END_SECTION:main-article */

/* START_SECTION:main-blog (INDEX:36) */
.main-blog {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .main-blog__articles {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .main-blog__articles-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-lg);
  }

  @media (width > 750px) {
    .main-blog__articles-grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:main-blog */

/* START_SECTION:main-collection (INDEX:37) */
.shopify-section-main-collection {
    overflow: visible;
  }

  .main-collection {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .main-collection__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
  }

  .main-collection__products-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .main-collection:has(.filter-and-sort--inline) .main-collection__inner {
      display: flex;
      flex-direction: column;
      gap: var(--gap-lg);
    }

    .main-collection:has(.filter-and-sort--sidebar) .main-collection__inner {
      display: grid;
      grid-template-columns: 25% calc(75% - var(--gap-lg));
      gap: var(--gap-lg);
    }

    .main-collection__products-grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:main-collections (INDEX:38) */
.main-collections {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .main-collections__inner {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .main-collections__products-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .main-collections__products-grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:main-collections */

/* START_SECTION:main-login (INDEX:39) */
.customer-login {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
    padding: 50px 0;
  }

  .customer-login__login,
  .customer-login__reset-password {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .customer-login__login-form,
  .customer-login__reset-password-form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    margin-top: var(--margin-lg);
  }

  .customer-login__form-actions {
    margin-top: var(--margin-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_SECTION:main-login */

/* START_SECTION:main-order (INDEX:40) */
.customer-order {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
    padding: 50px 0;
  }

  .customer-order__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .customer-order__content > .card {
    overflow-x: auto;
  }

  .order-details {
    width: 100%;
  }

  .order-details {
    margin-top: var(--margin-md);
    border: 1px solid var(--color-border, #e1e1e1);
    border-collapse: collapse;
  }
  .order-details th,
  .order-details td {
    border: 1px solid var(--color-border, #e1e1e1);
    padding: 10px;
  }

  .customer-order__addresses {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .customer-order__addresses > .card {
    width: 100%;
  }

  @media (width > 750px) {
    .customer-order__addresses {
      flex-direction: row;
    }
  }
/* END_SECTION:main-order */

/* START_SECTION:main-register (INDEX:43) */
.customer-register {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
    padding: 50px 0;
  }

  .customer-register__register {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .customer-register__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    margin-top: var(--margin-lg);
  }

  .customer-register__form-actions {
    margin-top: var(--margin-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_SECTION:main-register */

/* START_SECTION:main-reset-password (INDEX:44) */
.customer-reset-password {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
    padding: 50px 0;
  }

  .customer-reset-password__reset-password {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .customer-reset-password__reset-password > .h2 {
    margin-bottom: var(--margin-md);
  }

  .customer-reset-password__form {
    margin-top: var(--margin-lg);
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .customer-reset-password__form-actions {
    margin-top: var(--margin-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_SECTION:main-reset-password */

/* START_SECTION:main-search (INDEX:45) */
.main-search {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .main-search__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .main-search__inner > form {
    display: flex;
    flex-direction: row;
    gap: var(--gap-xs);
    align-items: center;
    margin: 0;
  }

  .main-search__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  .main-search__pages {
    display: flex;
    gap: var(--gap-md);
    flex-wrap: wrap;
    padding-bottom: var(--margin-xl);
  }

  .main-search__page-link {
    color: var(--color-foreground);
  }

  .main-search__results-for {
    margin-top: var(--margin-md);
    margin-bottom: var(--margin-lg);
  }

  @media (width > 750px) {
    .main-search__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:main-search */

/* START_SECTION:marquee (INDEX:46) */
.section-marquee {
    padding: 0;
    max-width: 100%;
  }

  .marquee-section {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
/* END_SECTION:marquee */

/* START_SECTION:navigation (INDEX:47) */
.navigation {
    width: 100%;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .navigation__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .navigation__track {
    display: flex;
    gap: var(--gap-md);
    scrollbar-width: none;
    overflow-x: auto;
    padding-top: 5px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: var(--wrap);
  }

  @media (width > 750px) {
    .navigation__track {
      justify-content: var(--alignment-desktop);
    }
  }
/* END_SECTION:navigation */

/* START_SECTION:password (INDEX:49) */
.password-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }
/* END_SECTION:password */

/* START_SECTION:predictive-search (INDEX:50) */
.predictive-search-results-container {
    overflow-y: auto;
    max-height: calc(var(--search-modal-max-height-mobile) - var(--inputs-min-height) - var(--padding-md) * 2);
  }

  @media (width > 750px) {
    .predictive-search-results-container {
      max-height: calc(var(--search-modal-max-height) - var(--inputs-min-height) - var(--padding-md) * 2);
    }
  }

  .predictive-search-results:not(:empty) {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    padding: var(--padding-xs);
    padding-top: var(--margin-md);
  }

  .predictive-search-results .predictive-search__section:not(:last-child) {
    border-bottom: 1px solid var(--color-input-border-low-opacity);
    padding-bottom: var(--gap-lg);
  }

  .predictive-search__title {
    margin-bottom: var(--margin-md);
  }

  .predictive-search__list,
  .predictive-search__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .predictive-search__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .predictive-search__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search__item-product a {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    text-decoration: none;
    font-size: var(--font-body--size);
  }

  .predictive-search__item-product a img,
  .predictive-search__item-collection a img {
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
    aspect-ratio: 1/1;
    object-fit: cover;
  }

  .predictive-search__item-collection a {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    text-decoration: none;
    font-size: var(--font-body--size);
  }

  .predictive-search__item-page,
  .predictive-search__item-article {
    padding: var(--padding-xs);
    border-radius: calc(var(--inputs-border-radius) * var(--small-multiplier));
    transition: background-color var(--animation-speed) var(--animation-easing);
    font-size: var(--font-body--size);
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .predictive-search__item-page:hover,
  .predictive-search__item-article:hover {
    background-color: var(--color-input-border-low-opacity);
  }

  .predictive-search__item-article a {
    display: flex;
    justify-content: space-between;
    gap: var(--gap-xs);
    width: 100%;
  }

  .predictive-search__item-article-date {
    opacity: 0.7;
  }
/* END_SECTION:predictive-search */

/* START_SECTION:product-recommendations (INDEX:52) */
.product-recommendations {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: block;
  }

  .product-recommendations__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--color-background);
  }

  .product-recommendations__title {
    margin-bottom: var(--margin-lg);
  }

  .product-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .product-recommendations__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:reviews (INDEX:53) */
.section-reviews {
    max-width: 100%;
    padding: 0;
  }

  .reviews {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    width: 100%;
  }

  .reviews__title {
    margin-bottom: var(--gap-lg);
  }

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

  @media (width > 750px) {
    .reviews__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }

  .reviews .splide {
    padding-bottom: 20px;
  }
/* END_SECTION:reviews */

/* START_SECTION:sm-engomar-before-after-v3 (INDEX:54) */
.sm-ba {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 64px);
  padding-bottom: var(--sm-pb-d, 64px);
}
.sm-ba.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-ba.sm-fade.is-in { opacity: 1; transform: none; }
.sm-ba__inner { max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.sm-ba__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
}
.sm-ba__heading {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.7px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.2;
}
.sm-ba__sub {
  font-size: 14px;
  color: #777;
  margin: 0 auto 32px;
  max-width: 560px;
}
.sm-ba__compare {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sm-bg-fill, #f4f4f4);
  border: 1px solid #ececec;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
/* Aspect ratio presets — desktop */
.sm-ba--ratio-1-1 .sm-ba__compare { aspect-ratio: 1/1; }
.sm-ba--ratio-4-3 .sm-ba__compare { aspect-ratio: 4/3; }
.sm-ba--ratio-3-4 .sm-ba__compare { aspect-ratio: 3/4; }
.sm-ba--ratio-3-2 .sm-ba__compare { aspect-ratio: 3/2; }
.sm-ba--ratio-2-3 .sm-ba__compare { aspect-ratio: 2/3; }
.sm-ba--ratio-16-9 .sm-ba__compare { aspect-ratio: 16/9; }
.sm-ba--ratio-16-10 .sm-ba__compare { aspect-ratio: 16/10; }
.sm-ba__img-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
}
/* Before layer is clipped from the right via clip-path; JS animates the inset on drag.
   The image fills the full compare box with a fixed object-position so it never stretches
   and the user controls which part of a tall photo is visible. */
.sm-ba__img-wrap--before {
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.sm-ba__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  background: var(--sm-bg-fill, #f4f4f4);
}
.sm-ba--fit-cover .sm-ba__img { object-fit: cover; }
.sm-ba--fit-contain .sm-ba__img { object-fit: contain; }
.sm-ba__img--before { object-position: var(--sm-before-pos, center center); }
.sm-ba__img--after { object-position: var(--sm-after-pos, center center); }
.sm-ba__tag {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}
.sm-ba__tag--after { right: 14px; background: var(--sm-accent, #F97316); }
.sm-ba__tag--before { left: 14px; }
/* Handle: vertical line + larger knob with chevrons. */
.sm-ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18), 0 0 16px rgba(0,0,0,0.12);
  z-index: 4;
}
.sm-ba__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sm-accent, #F97316);
}
.sm-ba__handle-svg { width: 28px; height: 28px; display: block; }
.sm-ba__compare:focus-within .sm-ba__handle-knob,
.sm-ba__compare:hover .sm-ba__handle-knob { transform: translate(-50%, -50%) scale(1.06); }
.sm-ba__handle-knob { transition: transform .18s ease; }
.sm-ba__helper {
  margin: 16px 0 0;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* Empty state when no images uploaded */
.sm-ba__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  aspect-ratio: 4/3;
  background: #fafafa;
  border: 1px dashed #d4d4d4;
  border-radius: 8px;
  padding: 32px;
  color: #888;
  box-sizing: border-box;
}
.sm-ba__empty-icon { font-size: 26px; color: #ccc; margin: 0 0 12px; letter-spacing: 4px; }
.sm-ba__empty-text { margin: 0; font-size: 13px; line-height: 1.5; max-width: 420px; }
.sm-ba__empty-text strong { color: #444; }
@media (max-width: 749px) {
  .sm-ba { padding-top: var(--sm-pt-m, 48px); padding-bottom: var(--sm-pb-m, 48px); }
  .sm-ba__inner { padding: 0 16px; }
  .sm-ba__empty { aspect-ratio: 1/1; padding: 24px; }
  .sm-ba__handle-knob { width: 50px; height: 50px; }
  .sm-ba__handle-svg { width: 24px; height: 24px; }
  /* Mobile-friendly default ratios — keep portrait/square images tall enough to read */
  .sm-ba--ratio-16-9 .sm-ba__compare,
  .sm-ba--ratio-16-10 .sm-ba__compare,
  .sm-ba--ratio-3-2 .sm-ba__compare { aspect-ratio: 4/3; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-ba.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-ba__handle-knob { transition: none; }
}
/* END_SECTION:sm-engomar-before-after-v3 */

/* START_SECTION:sm-engomar-benefits-image-v3 (INDEX:55) */
.sm-bi {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 72px);
  padding-bottom: var(--sm-pb-d, 72px);
}
.sm-bi.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-bi.sm-fade.is-in { opacity: 1; transform: none; }
.sm-bi__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sm-bi__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-bi__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-bi__sub {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}
.sm-bi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sm-bi__card {
  background: var(--sm-card-bg, #FAFAFA);
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.sm-bi--hover .sm-bi__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: #e5e7eb;
}
.sm-bi__media {
  position: relative;
  background: #f0f0f0;
  aspect-ratio: var(--sm-img-aspect, 4/3);
  overflow: hidden;
}
.sm-bi__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sm-bi__placeholder { width: 100%; height: 100%; background: #f0f0f0; }
.sm-bi__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.sm-bi__body { padding: 22px 22px 24px; }
.sm-bi__title {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
  letter-spacing: -0.3px;
}
.sm-bi__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media (max-width: 990px) { .sm-bi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) {
  .sm-bi { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-bi__inner { padding: 0 16px; }
  .sm-bi__grid { grid-template-columns: 1fr; }
  .sm-bi__body { padding: 18px 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-bi.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-bi--hover .sm-bi__card:hover { transform: none; }
}
/* END_SECTION:sm-engomar-benefits-image-v3 */

/* START_SECTION:sm-engomar-benefits-stats-v3 (INDEX:56) */
.sm-bs {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 72px);
  padding-bottom: var(--sm-pb-d, 72px);
}
.sm-bs.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-bs.sm-fade.is-in { opacity: 1; transform: none; }
.sm-bs__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; text-align: center; }
.sm-bs__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
}
.sm-bs__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-bs__sub {
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}
.sm-bs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sm-bs__cell {
  padding: 24px 18px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sm-bs__num {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--sm-accent, #F97316);
  line-height: 1;
  margin: 0 0 12px;
  font-variant-numeric: tabular-nums;
}
.sm-bs__pre, .sm-bs__suf {
  font-size: 0.55em;
  color: #444;
  font-weight: 700;
  letter-spacing: -1px;
}
.sm-bs__label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #111;
  margin: 0 0 4px;
}
.sm-bs__detail {
  font-size: 12px;
  line-height: 1.5;
  color: #777;
  max-width: 200px;
  margin: 6px auto 0;
}
@media (max-width: 990px) { .sm-bs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) {
  .sm-bs { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-bs__grid { grid-template-columns: 1fr; gap: 12px; }
  .sm-bs__cell { padding: 22px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-bs.sm-fade { opacity: 1; transform: none; transition: none; }
}
/* END_SECTION:sm-engomar-benefits-stats-v3 */

/* START_SECTION:sm-engomar-benefits-v3 (INDEX:57) */
.sm-bn {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-bn__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sm-bn__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-bn__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-bn__sub {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}
.sm-bn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sm-bn__card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 26px 22px;
}
.sm-bn__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 12px;
}
.sm-bn__title {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
  letter-spacing: -0.3px;
}
.sm-bn__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media (max-width: 990px) { .sm-bn__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 549px) { .sm-bn__grid { grid-template-columns: 1fr; } .sm-bn { padding: 56px 0; } }

/* === 1.2 baseline + 1.3 fixes === */
.sm-bn { background: var(--sm-bg, #fff); padding-top: var(--sm-pt-d, 72px); padding-bottom: var(--sm-pb-d, 72px); }
.sm-bn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
}
.sm-bn__card { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.sm-bn--hover .sm-bn__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  border-color: #e5e7eb;
}
.sm-bn.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-bn.sm-fade.is-in { opacity: 1; transform: none; }
@media (max-width: 549px) {
  .sm-bn { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-bn--collapse-m .sm-bn__card { cursor: pointer; position: relative; }
  .sm-bn--collapse-m .sm-bn__text { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.3s ease; margin-top: 0; }
  .sm-bn--collapse-m .sm-bn__card.is-open .sm-bn__text { max-height: 400px; margin-top: 8px; }
  .sm-bn--collapse-m .sm-bn__card::after { content: '+'; position: absolute; top: 22px; right: 22px; font-size: 22px; color: #888; line-height: 1; }
  .sm-bn--collapse-m .sm-bn__card.is-open::after { content: '−'; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-bn.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-bn--hover .sm-bn__card:hover { transform: none; }
}
/* END_SECTION:sm-engomar-benefits-v3 */

/* START_SECTION:sm-engomar-comparison-v3 (INDEX:58) */
.sm-cmp {
  background: #fafafa;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-cmp__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.sm-cmp__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-cmp__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-cmp__heading em { font-style: normal; color: var(--sm-accent, #F97316); }
.sm-cmp__sub {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 36px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}
.sm-cmp__table {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
}
.sm-cmp__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid #f0f0f0;
}
.sm-cmp__row--head { background: #111; color: #fff; border-top: 0; }
.sm-cmp__cell { padding: 16px 18px; font-size: 14px; }
.sm-cmp__row--head .sm-cmp__cell {
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sm-cmp__cell--label { color: #222; }
.sm-cmp__cell--us, .sm-cmp__cell--them { text-align: center; font-size: 18px; }
.sm-cmp__yes { color: var(--sm-accent, #F97316); font-weight: 900; }
.sm-cmp__no { color: #ccc; font-weight: 400; }
.sm-cmp__row--head .sm-cmp__cell--us, .sm-cmp__row--head .sm-cmp__cell--them { font-size: 11px; }
@media (max-width: 549px) {
  .sm-cmp__cell { padding: 14px 10px; font-size: 13px; }
  .sm-cmp { padding: 56px 0; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-cmp { background: var(--sm-bg, #fafafa); padding-top: var(--sm-pt-d, 72px); padding-bottom: var(--sm-pb-d, 72px); }
.sm-cmp--win .sm-cmp__cell--us { background: rgba(249,115,22,0.05); }
.sm-cmp--win .sm-cmp__row--head .sm-cmp__cell--us { background: var(--sm-accent, #F97316); color: #fff; }
.sm-cmp.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-cmp.sm-fade.is-in { opacity: 1; transform: none; }
.sm-cmp.sm-fade [data-sm-cmp-row] .sm-cmp__yes { display: inline-block; opacity: 0; transform: scale(0.6); }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row] .sm-cmp__yes { animation: sm-cmp-pop .35s ease forwards; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(2) .sm-cmp__yes { animation-delay: 0.10s; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(3) .sm-cmp__yes { animation-delay: 0.18s; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(4) .sm-cmp__yes { animation-delay: 0.26s; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(5) .sm-cmp__yes { animation-delay: 0.34s; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(6) .sm-cmp__yes { animation-delay: 0.42s; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(7) .sm-cmp__yes { animation-delay: 0.50s; }
.sm-cmp.sm-fade.is-in [data-sm-cmp-row]:nth-child(8) .sm-cmp__yes { animation-delay: 0.58s; }
@keyframes sm-cmp-pop { to { opacity: 1; transform: none; } }
@media (max-width: 549px) {
  .sm-cmp { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-cmp--sticky-m .sm-cmp__row--head { position: sticky; top: 0; z-index: 4; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-cmp.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-cmp__yes { opacity: 1 !important; transform: none !important; animation: none !important; }
}
/* END_SECTION:sm-engomar-comparison-v3 */

/* START_SECTION:sm-engomar-countdown-banner-v3 (INDEX:59) */
.sm-cb {
  background: var(--sm-bg, #111);
  color: var(--sm-fg, #fff);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 28px);
  padding-bottom: var(--sm-pb-d, 28px);
}
.sm-cb.sm-fade { opacity: 0; transition: opacity .6s ease; }
.sm-cb.sm-fade.is-in { opacity: 1; }
.sm-cb__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.sm-cb__copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sm-cb__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0;
}
.sm-cb__headline {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.2px;
}
.sm-cb__time {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.sm-cb__unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  background: rgba(255,255,255,0.08);
  padding: 8px 4px 6px;
  border-radius: 4px;
}
.sm-cb__unit > span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: var(--sm-accent, #F97316);
  letter-spacing: 0.5px;
}
.sm-cb__unit em {
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.sm-cb__sep {
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  align-self: flex-start;
  padding-top: 12px;
}
.sm-cb__cta {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
.sm-cb__cta:hover { opacity: 0.9; }
@media (max-width: 749px) {
  .sm-cb { padding-top: var(--sm-pt-m, 22px); padding-bottom: var(--sm-pb-m, 22px); }
  .sm-cb__inner { gap: 14px; padding: 0 16px; }
  .sm-cb__copy { text-align: center; flex-basis: 100%; align-items: center; }
  .sm-cb__headline { font-size: 14px; }
  .sm-cb__unit { min-width: 40px; padding: 6px 2px 4px; }
  .sm-cb__unit > span { font-size: 18px; }
  .sm-cb__cta { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-cb.sm-fade { opacity: 1; transition: none; }
}
/* END_SECTION:sm-engomar-countdown-banner-v3 */

/* START_SECTION:sm-engomar-faq-v3 (INDEX:60) */
.sm-fq {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-fq__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.sm-fq__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-fq__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-fq__sub {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}
.sm-fq__list {
  border-top: 1px solid #ececec;
}
.sm-fq__item {
  border-bottom: 1px solid #ececec;
}
.sm-fq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  list-style: none;
  letter-spacing: -0.1px;
}
.sm-fq__q::-webkit-details-marker { display: none; }
.sm-fq__q-text { flex: 1; padding-right: 16px; }
.sm-fq__chev {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sm-fq__chev::before, .sm-fq__chev::after {
  content: '';
  position: absolute;
  background: #999;
  transition: transform 0.2s ease, background 0.2s ease;
}
.sm-fq__chev::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.sm-fq__chev::after { left: 6px; top: 0; width: 1.5px; height: 14px; }
.sm-fq__item[open] .sm-fq__chev::after { transform: scaleY(0); }
.sm-fq__item[open] .sm-fq__chev::before { background: var(--sm-accent, #F97316); }
.sm-fq__a {
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
.sm-fq__a p { margin: 0 0 10px; }
.sm-fq__a p:last-child { margin-bottom: 0; }
.sm-fq__cta-wrap { margin-top: 44px; text-align: center; }
.sm-fq__cta {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: opacity 0.15s ease;
  min-width: 280px;
  text-align: center;
}
.sm-fq__cta:hover { opacity: 0.9; }
.sm-fq__cta-note {
  margin: 14px 0 0;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 549px) {
  .sm-fq { padding: 56px 0; }
  .sm-fq__cta { width: 100%; min-width: 0; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-fq { background: var(--sm-bg, #fff); padding-top: var(--sm-pt-d, 72px); padding-bottom: var(--sm-pb-d, 72px); }
.sm-fq__tools { display: flex; gap: 12px; align-items: center; margin: 0 0 18px; flex-wrap: wrap; }
.sm-fq__search { flex: 1; min-width: 200px; }
.sm-fq__search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.sm-fq__search-input:focus { outline: none; border-color: var(--sm-accent, #F97316); }
.sm-fq__open-all {
  background: transparent;
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  cursor: pointer;
  color: #555;
  transition: border-color 0.15s ease, color 0.15s ease;
  font-family: inherit;
}
.sm-fq__open-all:hover { border-color: var(--sm-accent, #F97316); color: var(--sm-accent, #F97316); }
.sm-fq__item.is-hidden { display: none; }
.sm-fq__item[open] .sm-fq__a { animation: sm-fq-slide .25s ease; }
@keyframes sm-fq-slide { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.sm-fq__empty { text-align: center; padding: 32px 0; color: #999; font-size: 13px; font-style: italic; }
.sm-fq.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-fq.sm-fade.is-in { opacity: 1; transform: none; }
@media (max-width: 549px) {
  .sm-fq { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-fq.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-fq__item[open] .sm-fq__a { animation: none; }
}
/* END_SECTION:sm-engomar-faq-v3 */

/* START_SECTION:sm-engomar-gallery-mosaic-v3 (INDEX:61) */
.sm-gm {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 56px);
  padding-bottom: var(--sm-pb-d, 56px);
}
.sm-gm.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-gm.sm-fade.is-in { opacity: 1; transform: none; }
.sm-gm__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sm-gm__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-gm__heading {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.6px;
  margin: 0 0 32px;
  color: #111;
  line-height: 1.2;
}
/* Mosaic: 1 large + 4 small in a 4-col 2-row grid */
.sm-gm__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 8px;
  height: auto;
}
.sm-gm__cell {
  position: relative;
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
}
/* Large hero cell spanning 2 cols and 2 rows */
.sm-gm__cell--1 { grid-column: span 2; grid-row: span 2; }
.sm-gm__cell--2 { grid-column: span 1; grid-row: span 1; }
.sm-gm__cell--3 { grid-column: span 1; grid-row: span 1; }
.sm-gm__cell--4 { grid-column: span 1; grid-row: span 1; }
.sm-gm__cell--5 { grid-column: span 1; grid-row: span 1; }
/* If user adds 6+ images, they go below */
.sm-gm__cell--6, .sm-gm__cell--7, .sm-gm__cell--8 { grid-column: span 1; grid-row: span 1; }
.sm-gm__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sm-gm__placeholder { width: 100%; height: 100%; background: #f5f5f5; }
.sm-gm__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 14px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
@media (max-width: 749px) {
  .sm-gm { padding-top: var(--sm-pt-m, 40px); padding-bottom: var(--sm-pb-m, 40px); }
  .sm-gm__inner { padding: 0 16px; }
  .sm-gm__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
    gap: 6px;
  }
  .sm-gm__cell--1 { grid-column: span 2; grid-row: span 1; }
  .sm-gm__cell--2, .sm-gm__cell--3, .sm-gm__cell--4, .sm-gm__cell--5 { grid-column: span 1; grid-row: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-gm.sm-fade { opacity: 1; transform: none; transition: none; }
}
/* END_SECTION:sm-engomar-gallery-mosaic-v3 */

/* START_SECTION:sm-engomar-gallery-scroll-v3 (INDEX:62) */
.sm-gs {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 56px);
  padding-bottom: var(--sm-pb-d, 56px);
  position: relative;
  overflow: hidden;
}
.sm-gs.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-gs.sm-fade.is-in { opacity: 1; transform: none; }
.sm-gs__inner { max-width: 1200px; margin: 0 auto 24px; padding: 0 24px; }
.sm-gs__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
}
.sm-gs__heading {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin: 0;
  color: #111;
  line-height: 1.2;
}
.sm-gs__rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.sm-gs__rail::-webkit-scrollbar { display: none; }
.sm-gs__spacer { flex: 0 0 calc((100% - 1200px) / 2); min-width: 24px; }
.sm-gs__card {
  flex: 0 0 var(--sm-card-w, 280px);
  scroll-snap-align: center;
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.sm-gs__img { width: 100%; aspect-ratio: var(--sm-aspect, 3/4); object-fit: cover; display: block; }
.sm-gs__placeholder { width: 100%; aspect-ratio: var(--sm-aspect, 3/4); background: #f5f5f5; }
.sm-gs__caption {
  margin: 0;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.2px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.sm-gs__arrows-wrap {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 20px;
  z-index: 3;
}
.sm-gs__arrow {
  pointer-events: auto;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #222;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.sm-gs__arrow:hover { background: #fff; transform: scale(1.05); }

@media (max-width: 1248px) {
  .sm-gs__spacer { flex: 0 0 24px; }
}
@media (max-width: 749px) {
  .sm-gs { padding-top: var(--sm-pt-m, 40px); padding-bottom: var(--sm-pb-m, 40px); }
  .sm-gs__inner { padding: 0 16px; margin: 0 0 18px; }
  .sm-gs__card { flex: 0 0 var(--sm-card-w-m, 220px); }
  .sm-gs__spacer { flex: 0 0 16px; }
  .sm-gs__arrows-wrap { display: none; }
  .sm-gs__caption { font-size: 11px; padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-gs.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-gs__rail { scroll-behavior: auto; }
}
/* END_SECTION:sm-engomar-gallery-scroll-v3 */

/* START_SECTION:sm-engomar-header-v3 (INDEX:63) */
.sm-hd {
  background: var(--sm-bg, #FFFFFF);
  color: var(--sm-fg, #222);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 18px);
  padding-bottom: var(--sm-pb-d, 18px);
  width: 100%;
  position: relative;
  z-index: 5;
}
.sm-hd--sticky { position: sticky; top: 0; z-index: 40; }
.sm-hd--bb-line { border-bottom: 1px solid var(--sm-border-color, #ececec); }
.sm-hd--bb-accent { border-bottom: 2px solid var(--sm-accent, #F97316); }
.sm-hd.sm-fade { opacity: 0; transition: opacity .5s ease; }
.sm-hd.sm-fade.is-in { opacity: 1; }
.sm-hd__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 36px;
}
.sm-hd__slot { display: flex; align-items: center; min-width: 0; }
.sm-hd__slot--left { justify-content: flex-start; }
.sm-hd__slot--center { justify-content: center; }
.sm-hd__slot--right { justify-content: flex-end; }
/* Position presets — shift the logo without breaking 3-col grid */
.sm-hd--left .sm-hd__inner { grid-template-columns: auto 1fr 1fr; }
.sm-hd--left .sm-hd__slot--center { justify-content: flex-start; order: 0; }
.sm-hd--left .sm-hd__slot--left { order: 1; }
.sm-hd--right .sm-hd__inner { grid-template-columns: 1fr 1fr auto; }
.sm-hd--right .sm-hd__slot--center { justify-content: flex-end; order: 2; }
.sm-hd--right .sm-hd__slot--right { order: 1; }
.sm-hd__logo {
  width: auto;
  max-width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}
.sm-hd--clickable .sm-hd__logo { pointer-events: auto; }
.sm-hd__logo-link { display: inline-flex; text-decoration: none; }
.sm-hd__logo-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--sm-fg, #222);
  text-transform: uppercase;
}
.sm-hd__aux {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sm-fg, #222);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 749px) {
  .sm-hd { padding-top: var(--sm-pt-m, 14px); padding-bottom: var(--sm-pb-m, 14px); }
  .sm-hd__inner { padding: 0 16px; gap: 8px; }
  .sm-hd__aux { font-size: 10px; letter-spacing: 0.8px; }
}
@media (max-width: 549px) {
  .sm-hd__slot--left .sm-hd__aux,
  .sm-hd__slot--right .sm-hd__aux { display: none; }
  .sm-hd--left .sm-hd__inner,
  .sm-hd--right .sm-hd__inner { grid-template-columns: 1fr auto 1fr; }
  .sm-hd--left .sm-hd__slot--center,
  .sm-hd--right .sm-hd__slot--center { justify-content: center; order: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hd.sm-fade { opacity: 1; transition: none; }
}
/* END_SECTION:sm-engomar-header-v3 */

/* START_SECTION:sm-engomar-hero-enclosed-v3 (INDEX:64) */
.sm-hen {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 64px);
  padding-bottom: var(--sm-pb-d, 64px);
}
.sm-hen.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-hen.sm-fade.is-in { opacity: 1; transform: none; }
.sm-hen__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.sm-hen__card {
  background: var(--sm-card-bg, #FAFAFA);
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 56px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sm-hen__logo-wrap {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm-hen__logo {
  width: auto;
  max-width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}
.sm-hen__eyebrow {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin: 0 0 22px;
}
.sm-hen__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #111;
  max-width: 540px;
}
.sm-hen__title em { font-style: normal; color: var(--sm-accent, #F97316); }
.sm-hen__sub {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 26px;
  max-width: 520px;
}
.sm-hen__bullets { list-style: none; margin: 0 0 26px; padding: 0; text-align: left; max-width: 460px; }
.sm-hen__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: #333;
}
.sm-hen__check {
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  color: var(--sm-accent, #F97316);
  margin-top: 1px;
}
.sm-hen__price { display: flex; align-items: baseline; gap: 12px; margin: 0 0 22px; flex-wrap: wrap; justify-content: center; }
.sm-hen__price-strike { font-size: 16px; text-decoration: line-through; color: #999; }
.sm-hen__price-now { font-size: 36px; font-weight: 900; color: #111; letter-spacing: -1px; }
.sm-hen__price-note { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.sm-hen__cta {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  min-width: 280px;
  text-align: center;
}
.sm-hen__cta:hover { opacity: 0.9; }
.sm-hen__media { margin: 32px 0 0; max-width: 100%; }
.sm-hen__img { width: 100%; max-width: 720px; height: auto; display: block; margin: 0 auto; border-radius: 6px; }
.sm-hen__trust {
  margin: 18px 0 0;
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 749px) {
  .sm-hen { padding-top: var(--sm-pt-m, 48px); padding-bottom: var(--sm-pb-m, 48px); }
  .sm-hen__inner { padding: 0 16px; }
  .sm-hen__card { padding: 40px 24px; border-radius: 6px; }
  .sm-hen__title { font-size: 26px; letter-spacing: -0.6px; }
  .sm-hen__price-now { font-size: 30px; }
  .sm-hen__cta { width: 100%; min-width: 0; padding: 16px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hen.sm-fade { opacity: 1; transform: none; transition: none; }
}
/* END_SECTION:sm-engomar-hero-enclosed-v3 */

/* START_SECTION:sm-engomar-hero-split-v3 (INDEX:65) */
.sm-hsp {
  background: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  border-bottom: 1px solid #f0f0f0;
}
.sm-hsp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sm-hsp__copy { display: flex; flex-direction: column; }
.sm-hsp__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 18px;
}
.sm-hsp__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 18px;
  color: #111;
}
.sm-hsp__title em {
  font-style: normal;
  color: var(--sm-accent, #F97316);
}
.sm-hsp__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 26px;
  max-width: 460px;
}
.sm-hsp__bullets { list-style: none; margin: 0 0 28px; padding: 0; }
.sm-hsp__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: #333;
}
.sm-hsp__check {
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  color: var(--sm-accent, #F97316);
  margin-top: 1px;
}
.sm-hsp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  flex-wrap: wrap;
}
.sm-hsp__price-strike {
  font-size: 18px;
  text-decoration: line-through;
  color: #999;
}
.sm-hsp__price-now {
  font-size: 40px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
}
.sm-hsp__price-note {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sm-hsp__cta {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  align-self: flex-start;
  min-width: 280px;
  text-align: center;
}
.sm-hsp__cta:hover { opacity: 0.9; }
.sm-hsp__trust {
  margin: 14px 0 0;
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sm-hsp__rating {
  margin: 12px 0 0;
  font-size: 12px;
  color: #777;
}
.sm-hsp__stars { color: #fbbf24; letter-spacing: 2px; margin-right: 6px; }
.sm-hsp__media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sm-hsp__img { max-width: 100%; height: auto; }
.sm-hsp__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
}
@media (max-width: 749px) {
  .sm-hsp__inner { grid-template-columns: 1fr; gap: 36px; padding: 44px 22px; }
  .sm-hsp__media { order: -1; max-width: 320px; margin: 0 auto; }
  .sm-hsp__title { font-size: 28px; letter-spacing: -0.6px; }
  .sm-hsp__price-now { font-size: 32px; }
  .sm-hsp__cta { width: 100%; min-width: 0; align-self: stretch; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-hsp { background: var(--sm-bg, #fff); }
.sm-hsp__inner { padding-top: var(--sm-pt-d, 64px); padding-bottom: var(--sm-pb-d, 64px); }
.sm-hsp__media picture { display: block; width: 100%; }
.sm-hsp__media picture img { display: block; margin: 0 auto; max-width: 100%; height: auto; }
.sm-hsp.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-hsp.sm-fade.is-in { opacity: 1; transform: none; }
.sm-hsp--reveal .sm-hsp__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: sm-hsp-word .55s ease forwards;
  animation-delay: calc(var(--i, 0) * 60ms + 80ms);
}
@keyframes sm-hsp-word { to { opacity: 1; transform: none; } }
@media (max-width: 749px) {
  .sm-hsp__inner { padding-top: var(--sm-pt-m, 44px); padding-bottom: var(--sm-pb-m, 44px); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hsp.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-hsp--reveal .sm-hsp__word { opacity: 1; transform: none; animation: none; }
}
/* END_SECTION:sm-engomar-hero-split-v3 */

/* START_SECTION:sm-engomar-hero-v3 (INDEX:66) */
.sm-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-hero__media { position: absolute; inset: 0; z-index: 0; }
.sm-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(var(--sm-blur, 0));
  transform: scale(1.02);
}
.sm-hero__placeholder { width: 100%; height: 100%; background: #0d0d0d; }
.sm-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0, var(--sm-overlay, 0.7)) 0%,
    rgba(0,0,0, calc(var(--sm-overlay, 0.7) * 0.65)) 60%,
    rgba(0,0,0, calc(var(--sm-overlay, 0.7) * 0.3)) 100%
  );
}
.sm-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px;
}
.sm-hero__content { max-width: 540px; }
.sm-hero__eyebrow {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin: 0 0 22px;
}
.sm-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
}
.sm-hero__sub {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
}
.sm-hero__bullets { list-style: none; margin: 0 0 28px; padding: 0; }
.sm-hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.92);
}
.sm-hero__check {
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  color: var(--sm-accent, #F97316);
  margin-top: 1px;
}
.sm-hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.sm-hero__price-strike {
  font-size: 18px;
  text-decoration: line-through;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.sm-hero__price-now {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.sm-hero__price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sm-hero__cta {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  min-width: 260px;
  text-align: center;
}
.sm-hero__cta:hover { opacity: 0.9; }
.sm-hero__rating {
  margin: 18px 0 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}
.sm-hero__stars { color: #fbbf24; letter-spacing: 2px; margin-right: 4px; }
.sm-hero__trust {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 749px) {
  .sm-hero { min-height: 540px; }
  .sm-hero__inner { padding: 44px 22px; }
  .sm-hero__title { font-size: 28px; letter-spacing: -0.6px; }
  .sm-hero__price-now { font-size: 32px; }
  .sm-hero__cta { width: 100%; min-width: 0; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-hero { background: var(--sm-bg, #0d0d0d); }
.sm-hero__media picture { display: block; width: 100%; height: 100%; }
/* 1.3: blur fix — kill the 1.0 transform:scale and the always-on filter; only apply filter when blur > 0 */
.sm-hero__img { transform: none; filter: none; object-position: var(--sm-focal-d, center); image-rendering: -webkit-optimize-contrast; }
.sm-hero--has-blur .sm-hero__img { filter: blur(var(--sm-blur, 0)); }
.sm-hero__inner { padding-top: var(--sm-pt-d, 56px); padding-bottom: var(--sm-pb-d, 56px); }
/* 1.3: hero carousel */
.sm-hero__slides { position: absolute; inset: 0; }
.sm-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.sm-hero__slide.is-active { opacity: 1; pointer-events: auto; }
.sm-hero__slide picture, .sm-hero__slide img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: var(--sm-focal-d, center); }
.sm-hero__cnav { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.sm-hero__cdot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.4); cursor: pointer; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.sm-hero__cdot:hover { background: rgba(255,255,255,0.7); }
.sm-hero__cdot.is-active { background: var(--sm-accent, #F97316); transform: scale(1.3); }
.sm-hero.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-hero.sm-fade.is-in { opacity: 1; transform: none; }
.sm-hero__animbg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(249,115,22,0.15), rgba(0,0,0,0) 40%, rgba(249,115,22,0.12) 80%);
  background-size: 200% 200%;
  animation: sm-hero-gradient 14s ease-in-out infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
@keyframes sm-hero-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.sm-hero--parallax .sm-hero__img { transform: scale(1.08); will-change: transform; }
.sm-hero--reveal .sm-hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: sm-hero-word .6s ease forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 100ms);
}
@keyframes sm-hero-word { to { opacity: 1; transform: none; } }
@media (max-width: 749px) {
  .sm-hero__inner { padding-top: var(--sm-pt-m, 44px); padding-bottom: var(--sm-pb-m, 44px); }
  .sm-hero__img { object-position: var(--sm-focal-m, center); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hero.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-hero--reveal .sm-hero__word { opacity: 1; transform: none; animation: none; }
  .sm-hero__animbg { animation: none; }
}
/* END_SECTION:sm-engomar-hero-v3 */

/* START_SECTION:sm-engomar-hero-video-v3 (INDEX:67) */
.sm-hv {
  position: relative;
  background: var(--sm-bg, #0d0d0d);
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 56px);
  padding-bottom: var(--sm-pb-d, 56px);
}
.sm-hv.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-hv.sm-fade.is-in { opacity: 1; transform: none; }
.sm-hv__media { position: absolute; inset: 0; z-index: 0; }
.sm-hv__video, .sm-hv__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sm-hv__placeholder { width: 100%; height: 100%; background: #0d0d0d; }
.sm-hv__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0, var(--sm-overlay, 0.55)) 0%, rgba(0,0,0, calc(var(--sm-overlay, 0.55) * 0.6)) 60%, rgba(0,0,0, calc(var(--sm-overlay, 0.55) * 0.3)) 100%);
}
.sm-hv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.sm-hv__content { max-width: 540px; }
.sm-hv__eyebrow {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin: 0 0 22px;
}
.sm-hv__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
}
.sm-hv--reveal .sm-hv__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: sm-hv-word .6s ease forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 100ms);
}
@keyframes sm-hv-word { to { opacity: 1; transform: none; } }
.sm-hv__sub {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 26px;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
}
.sm-hv__cta {
  display: inline-block;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
  min-width: 260px;
  text-align: center;
}
.sm-hv__cta:hover { opacity: 0.9; }
.sm-hv__trust {
  margin: 18px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 749px) {
  .sm-hv { min-height: 540px; padding-top: var(--sm-pt-m, 44px); padding-bottom: var(--sm-pb-m, 44px); }
  .sm-hv__inner { padding-left: 22px; padding-right: 22px; }
  .sm-hv__title { font-size: 28px; letter-spacing: -0.6px; }
  .sm-hv__cta { width: 100%; min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hv.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-hv--reveal .sm-hv__word { opacity: 1; transform: none; animation: none; }
  .sm-hv__video { display: none; }
}
/* END_SECTION:sm-engomar-hero-video-v3 */

/* START_SECTION:sm-engomar-image-text-split-v3 (INDEX:68) */
.sm-its {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 72px);
  padding-bottom: var(--sm-pb-d, 72px);
}
.sm-its.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-its.sm-fade.is-in { opacity: 1; transform: none; }
.sm-its__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sm-its__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-its__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 48px;
  color: #111;
  line-height: 1.15;
}
.sm-its__rows { display: flex; flex-direction: column; gap: 56px; }
.sm-its__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sm-its__row--rev .sm-its__media { order: 2; }
.sm-its__row--rev .sm-its__copy { order: 1; }
.sm-its__media {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sm-its__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sm-its__placeholder { width: 100%; height: 100%; }
.sm-its__copy { display: flex; flex-direction: column; }
.sm-its__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
}
.sm-its__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  color: #111;
  line-height: 1.2;
}
.sm-its__text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 18px;
}
.sm-its__text p { margin: 0 0 12px; }
.sm-its__text p:last-child { margin-bottom: 0; }
.sm-its__cta {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-decoration: none;
  border-bottom: 2px solid var(--sm-accent, #F97316);
  padding: 0 0 4px;
  transition: opacity 0.15s ease;
}
.sm-its__cta:hover { opacity: 0.7; }
@media (max-width: 749px) {
  .sm-its { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-its__inner { padding: 0 16px; }
  .sm-its__heading { margin: 0 0 36px; }
  .sm-its__rows { gap: 40px; }
  .sm-its__row { grid-template-columns: 1fr; gap: 24px; }
  .sm-its__row--rev .sm-its__media { order: 0; }
  .sm-its__row--rev .sm-its__copy { order: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-its.sm-fade { opacity: 1; transform: none; transition: none; }
}
/* END_SECTION:sm-engomar-image-text-split-v3 */

/* START_SECTION:sm-engomar-legal-v3 (INDEX:69) */
.sm-lg {
  background: #fafafa;
  padding: 48px 0;
  border-top: 1px solid #eee;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-lg__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; text-align: center; }
.sm-lg__heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 16px;
}
.sm-lg__body {
  font-size: 11.5px;
  line-height: 1.85;
  color: #888;
}
.sm-lg__body p { margin: 0 0 10px; }
.sm-lg__body p:last-child { margin-bottom: 0; }
.sm-lg__body strong { color: #555; font-weight: 700; }
.sm-lg__body a { color: #777; text-decoration: underline; }
@media (max-width: 549px) {
  .sm-lg { padding: 40px 0; }
  .sm-lg__body { font-size: 11px; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-lg { background: var(--sm-bg, #fafafa); padding-top: var(--sm-pt-d, 48px); padding-bottom: var(--sm-pb-d, 48px); }
.sm-lg--coll .sm-lg__body {
  max-height: 110px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
  text-align: left;
  margin: 0 auto;
  max-width: 720px;
}
.sm-lg--coll .sm-lg__body::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--sm-bg, #fafafa));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sm-lg--coll.is-open .sm-lg__body { max-height: 4000px; }
.sm-lg--coll.is-open .sm-lg__body::after { opacity: 0; }
.sm-lg__more {
  margin-top: 14px;
  background: transparent;
  border: 1px solid #d4d4d4;
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  font-family: inherit;
}
.sm-lg__more:hover { border-color: #888; color: #222; }
.sm-lg.sm-fade { opacity: 0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease; }
.sm-lg.sm-fade.is-in { opacity: 1; transform: none; }
@media (max-width: 549px) {
  .sm-lg { padding-top: var(--sm-pt-m, 40px); padding-bottom: var(--sm-pb-m, 40px); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-lg.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-lg--coll .sm-lg__body { transition: none; }
}
/* END_SECTION:sm-engomar-legal-v3 */

/* START_SECTION:sm-engomar-marquee-v3 (INDEX:70) */
.sm-marq {
  background: var(--sm-accent, #F97316);
  color: var(--sm-fg, #ffffff);
  overflow: hidden;
  padding: 11px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-marq__track {
  display: flex;
  width: max-content;
  animation: sm-marq-scroll 36s linear infinite;
}
.sm-marq__row { display: flex; flex-shrink: 0; }
.sm-marq__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sm-marq__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  opacity: 0.85;
}
@keyframes sm-marq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 749px) {
  .sm-marq__item { font-size: 11px; padding: 0 18px; letter-spacing: 1px; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-marq { padding: var(--sm-marq-pad, 11px) 0; position: relative; }
.sm-marq__track { animation-duration: var(--sm-marq-dur, 36s); }
.sm-marq--pause:hover .sm-marq__track { animation-play-state: paused; }
.sm-marq--logos { background: #fafafa; color: #888; border-top: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.sm-marq__logo { height: 22px; width: auto; object-fit: contain; filter: grayscale(40%); opacity: 0.85; }
.sm-marq--mask::before, .sm-marq--mask::after { content: ''; position: absolute; top: 0; bottom: 0; width: 64px; z-index: 2; pointer-events: none; }
.sm-marq--mask::before { left: 0; background: linear-gradient(to right, var(--sm-accent, #F97316), transparent); }
.sm-marq--mask::after { right: 0; background: linear-gradient(to left, var(--sm-accent, #F97316), transparent); }
.sm-marq--logos.sm-marq--mask::before { background: linear-gradient(to right, #fafafa, transparent); }
.sm-marq--logos.sm-marq--mask::after { background: linear-gradient(to left, #fafafa, transparent); }
.sm-marq.sm-fade { opacity: 0; transition: opacity .6s ease; }
.sm-marq.sm-fade.is-in { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .sm-marq__track { animation: none; } .sm-marq.sm-fade { opacity: 1; transition: none; } }
/* END_SECTION:sm-engomar-marquee-v3 */

/* START_SECTION:sm-engomar-payments-v3 (INDEX:71) */
.sm-pm {
  background: #fafafa;
  padding: 32px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-pm__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sm-pm__heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 18px;
}
.sm-pm__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sm-pm__item {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.sm-pm__img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.95;
}
.sm-pm__pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
}
@media (max-width: 549px) {
  .sm-pm { padding: 24px 0; }
  .sm-pm__list { gap: 14px; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-pm { background: var(--sm-bg, #fafafa); padding-top: var(--sm-pt-d, 32px); padding-bottom: var(--sm-pb-d, 32px); }
.sm-pm__item { transition: transform 0.15s ease; }
.sm-pm--hover .sm-pm__item:hover { transform: translateY(-2px); }
.sm-pm--hover .sm-pm__item:hover .sm-pm__img { filter: grayscale(0%); opacity: 1; }
.sm-pm__img { transition: filter 0.15s ease, opacity 0.15s ease; }
.sm-pm__inst {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-accent, #F97316);
  background: rgba(249,115,22,0.08);
  padding: 6px 12px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}
.sm-pm__inst-icon { display: inline-flex; }
.sm-pm.sm-fade { opacity: 0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease; }
.sm-pm.sm-fade.is-in { opacity: 1; transform: none; }
@media (max-width: 549px) {
  .sm-pm { padding-top: var(--sm-pt-m, 24px); padding-bottom: var(--sm-pb-m, 24px); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-pm.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-pm--hover .sm-pm__item:hover { transform: none; }
}
/* END_SECTION:sm-engomar-payments-v3 */

/* START_SECTION:sm-engomar-payments (INDEX:72) */
.sm-pm {
  background: #fafafa;
  padding: 32px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-pm__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sm-pm__heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 18px;
}
.sm-pm__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sm-pm__item {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.sm-pm__img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.95;
}
.sm-pm__pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
}
@media (max-width: 549px) {
  .sm-pm { padding: 24px 0; }
  .sm-pm__list { gap: 14px; }
}
/* END_SECTION:sm-engomar-payments */

/* START_SECTION:sm-engomar-press-strip-v3 (INDEX:73) */
.sm-ps {
  background: var(--sm-bg, #FFFFFF);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 36px);
  padding-bottom: var(--sm-pb-d, 36px);
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.sm-ps.sm-fade { opacity: 0; transition: opacity .6s ease; }
.sm-ps.sm-fade.is-in { opacity: 1; }
.sm-ps__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sm-ps__heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 22px;
}
.sm-ps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.sm-ps__item {
  display: inline-flex;
  align-items: center;
  height: 40px;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sm-ps__item:hover { opacity: 1; transform: translateY(-2px); }
.sm-ps__img {
  height: 28px;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
.sm-ps__item:hover .sm-ps__img { filter: grayscale(0%); }
.sm-ps__name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}
@media (max-width: 549px) {
  .sm-ps { padding-top: var(--sm-pt-m, 28px); padding-bottom: var(--sm-pb-m, 28px); }
  .sm-ps__list { gap: 22px; }
  .sm-ps__img { height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-ps.sm-fade { opacity: 1; transition: none; }
  .sm-ps__item:hover { transform: none; }
}
/* END_SECTION:sm-engomar-press-strip-v3 */

/* START_SECTION:sm-engomar-product-v3 (INDEX:74) */
.sm-pr {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-pr__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sm-pr__media {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm-pr__img { max-width: 100%; height: auto; }
.sm-pr__placeholder { width: 100%; aspect-ratio: 1; }
.sm-pr__details { display: flex; flex-direction: column; }
.sm-pr__rating {
  margin: 0 0 14px;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
}
.sm-pr__stars { color: #fbbf24; letter-spacing: 2px; margin-right: 6px; }
.sm-pr__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
  align-self: flex-start;
}
.sm-pr__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
}
.sm-pr__tagline {
  font-size: 15px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 22px;
  max-width: 440px;
}
.sm-pr__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 24px;
}
.sm-pr__pill {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 3px;
  background: #f5f5f5;
  color: #444;
  letter-spacing: 0.3px;
  border: 1px solid #ececec;
}
.sm-pr__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.sm-pr__price-strike {
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
}
.sm-pr__price-now {
  font-size: 36px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
}
.sm-pr__price-inst {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
}
.sm-pr__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 19px 24px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: opacity 0.15s ease;
}
.sm-pr__cta:hover { opacity: 0.9; }
.sm-pr__delivery {
  margin: 14px 0 4px;
  font-size: 12px;
  color: #15803d;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.sm-pr__trust {
  margin: 4px 0 0;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.3px;
}
@media (max-width: 749px) {
  .sm-pr__inner { grid-template-columns: 1fr; gap: 32px; }
  .sm-pr { padding: 56px 0; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-pr { background: var(--sm-bg, #fff); padding-top: var(--sm-pt-d, 80px); padding-bottom: var(--sm-pb-d, 80px); position: relative; }
.sm-pr__media-col { display: flex; flex-direction: column; gap: 16px; }

/* Default in 1.3: unframed image area (full-bleed) */
.sm-pr__media {
  position: relative;
  background: var(--sm-img-bg, #fafafa);
  border: 0;
  padding: 0;
  aspect-ratio: var(--sm-img-aspect, 1/1);
  overflow: hidden;
}
.sm-pr__img { width: 100%; height: 100%; max-width: 100%; object-fit: var(--sm-img-fit, contain); display: block; }
.sm-pr__placeholder { width: 100%; height: 100%; }
/* Opt back into 1.0 framed look */
.sm-pr--framed .sm-pr__media { padding: 32px; border: 1px solid #f0f0f0; aspect-ratio: auto; }
.sm-pr--framed .sm-pr__img { width: auto; height: auto; max-width: 100%; }

/* Discount badge */
.sm-pr__discount {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
  line-height: 1;
}

/* Zoom button */
.sm-pr__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: #222;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-pr__zoom:hover { background: #fff; }

/* Carousel */
.sm-pr__slides { width: 100%; height: 100%; position: relative; }
.sm-pr__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.sm-pr__slide.is-active { opacity: 1; pointer-events: auto; }
.sm-pr__video { width: 100%; height: 100%; object-fit: cover; }
.sm-pr__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-pr__nav:hover { background: #fff; }
.sm-pr__nav--prev { left: 12px; }
.sm-pr__nav--next { right: 12px; }
.sm-pr__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.sm-pr__dot { width: 7px; height: 7px; border-radius: 50%; border: 0; background: rgba(0,0,0,0.25); cursor: pointer; padding: 0; }
.sm-pr__dot.is-active { background: var(--sm-accent, #F97316); }

.sm-pr__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.sm-pr__thumb {
  width: 64px; height: 64px;
  border-radius: 4px;
  border: 2px solid transparent;
  background: var(--sm-img-bg, #fafafa);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-pr__thumb img { width: 100%; height: 100%; object-fit: contain; }
.sm-pr__thumb.is-active { border-color: var(--sm-accent, #F97316); }
.sm-pr__thumb-icon { font-size: 18px; color: #555; }

/* Swatches */
.sm-pr__swatches { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 4px 0; }
.sm-pr__swatch-label { font-size: 11px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: #888; }
.sm-pr__swatch-row { display: flex; gap: 8px; }
.sm-pr__swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.sm-pr__swatch:hover { transform: scale(1.05); }
.sm-pr__swatch.is-active { border-color: var(--sm-accent, #F97316); }

/* Mini-reviews */
.sm-pr__reviews { display: flex; flex-direction: column; gap: 10px; margin: 0 0 22px; padding: 16px; background: #fafafa; border: 1px solid #ececec; border-radius: 6px; }
.sm-pr__review { display: flex; flex-direction: column; gap: 4px; }
.sm-pr__review-stars { color: #fbbf24; letter-spacing: 1px; font-size: 11px; }
.sm-pr__review-text { font-size: 13px; line-height: 1.55; color: #444; margin: 0; font-style: italic; }
.sm-pr__review-author { font-size: 11px; color: #888; margin: 0; letter-spacing: 0.3px; }

/* Pill icons */
.sm-pr__pill { display: inline-flex; align-items: center; gap: 6px; }
.sm-pr__pill-icon { display: inline-flex; align-items: center; color: var(--sm-accent, #F97316); }

/* Bundle pill */
.sm-pr__bundle {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-accent, #F97316);
  background: rgba(249,115,22,0.08);
  border: 1px dashed rgba(249,115,22,0.4);
  padding: 8px 12px;
  border-radius: 3px;
  align-self: flex-start;
  letter-spacing: 0.3px;
}

/* Urgency */
.sm-pr__urgency {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 14px;
  font-size: 12px; font-weight: 700; color: #b91c1c; letter-spacing: 0.3px;
}
.sm-pr__urgency-pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444;
  animation: sm-pr-pulse 1.6s ease-in-out infinite;
}
@keyframes sm-pr-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Countdown */
.sm-pr__countdown {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
  padding: 10px 14px;
  background: #111; color: #fff;
  border-radius: 3px;
  align-self: flex-start;
}
.sm-pr__cd-label { font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.sm-pr__cd-time { font-size: 18px; font-weight: 900; letter-spacing: 1px; font-variant-numeric: tabular-nums; }
.sm-pr__cd-time span { color: var(--sm-accent, #F97316); }

/* Quantity */
.sm-pr__qty { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; }
.sm-pr__qty-label { font-size: 11px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: #888; margin-right: 6px; }
.sm-pr__qty-btn { width: 32px; height: 32px; border: 1px solid #e5e7eb; background: #fff; border-radius: 3px; font-size: 14px; cursor: pointer; }
.sm-pr__qty-input { width: 40px; height: 32px; border: 1px solid #e5e7eb; background: #fff; border-radius: 3px; text-align: center; font-size: 14px; font-weight: 700; }

/* Trust badges */
.sm-pr__trust-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #f0f0f0;
}
.sm-pr__trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; color: #666;
}
.sm-pr__trust-icon { color: #888; }
.sm-pr__trust-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.3; color: #555; }

/* Sticky mobile bar */
.sm-pr__sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid #ececec;
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sm-pr__sticky.is-visible { transform: none; }
.sm-pr__sticky-inner { display: flex; align-items: center; gap: 12px; max-width: 480px; margin: 0 auto; }
.sm-pr__sticky-price { display: flex; flex-direction: column; line-height: 1; }
.sm-pr__sticky-now { font-size: 18px; font-weight: 900; color: #111; }
.sm-pr__sticky-old { font-size: 11px; text-decoration: line-through; color: #999; }
.sm-pr__sticky-cta {
  flex: 1;
  background: var(--sm-accent, #F97316);
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* Lightbox */
.sm-pr__lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.sm-pr__lightbox[hidden] { display: none; }
.sm-pr__lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sm-pr__lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 0; font-size: 22px; cursor: pointer;
}

.sm-pr.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-pr.sm-fade.is-in { opacity: 1; transform: none; }

@media (max-width: 749px) {
  .sm-pr { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-pr__sticky { display: block; }
  .sm-pr__nav { width: 32px; height: 32px; }
  .sm-pr__thumb { width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-pr.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-pr__urgency-pulse { animation: none; }
}
/* END_SECTION:sm-engomar-product-v3 */

/* START_SECTION:sm-engomar-specs-v3 (INDEX:75) */
.sm-sp {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-sp__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.sm-sp__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-sp__heading {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.15;
}
.sm-sp__sub {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 36px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}
.sm-sp__table {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.sm-sp__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 16px 4px;
  border-top: 1px solid #f5f5f5;
  align-items: baseline;
}
.sm-sp__row:first-child { border-top: 0; }
.sm-sp__label {
  font-weight: 900;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sm-sp__value {
  font-size: 15px;
  color: #222;
  line-height: 1.5;
}
@media (max-width: 549px) {
  .sm-sp__row { grid-template-columns: 1fr; gap: 4px; }
  .sm-sp { padding: 56px 0; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-sp { background: var(--sm-bg, #fff); padding-top: var(--sm-pt-d, 72px); padding-bottom: var(--sm-pb-d, 72px); }
.sm-sp__label { display: inline-flex; align-items: center; gap: 8px; }
.sm-sp__icon { color: var(--sm-accent, #F97316); display: inline-flex; align-items: center; }
.sm-sp.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-sp.sm-fade.is-in { opacity: 1; transform: none; }
@media (max-width: 549px) {
  .sm-sp { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-sp.sm-fade { opacity: 1; transform: none; transition: none; }
}
/* END_SECTION:sm-engomar-specs-v3 */

/* START_SECTION:sm-engomar-testimonials-v3 (INDEX:76) */
.sm-tm {
  background: var(--sm-bg, #FAFAFA);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 72px);
  padding-bottom: var(--sm-pb-d, 72px);
}
.sm-tm.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-tm.sm-fade.is-in { opacity: 1; transform: none; }
.sm-tm__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; }
.sm-tm__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  margin: 0 0 14px;
}
.sm-tm__heading {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.7px;
  margin: 0 0 36px;
  color: #111;
  line-height: 1.2;
}
.sm-tm__stage {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 36px 32px;
  min-height: 240px;
  overflow: hidden;
}
.sm-tm__track { position: relative; min-height: 200px; }
.sm-tm__card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.sm-tm__card.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.sm-tm__stars { color: #fbbf24; letter-spacing: 3px; font-size: 14px; margin: 0 0 18px; }
.sm-tm__quote {
  font-size: 17px;
  line-height: 1.55;
  color: #222;
  margin: 0 0 22px;
  font-style: italic;
  letter-spacing: -0.1px;
}
.sm-tm__person {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}
.sm-tm__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.sm-tm__initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sm-accent, #F97316);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-tm__meta { text-align: left; }
.sm-tm__author { margin: 0; font-size: 13px; font-weight: 900; color: #111; }
.sm-tm__loc { margin: 2px 0 0; font-size: 11px; color: #888; letter-spacing: 0.3px; }
.sm-tm__nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 24px auto 0;
}
.sm-tm__btn {
  width: 36px; height: 36px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.sm-tm__btn:hover { border-color: var(--sm-accent, #F97316); color: var(--sm-accent, #F97316); }
.sm-tm__dots { display: inline-flex; gap: 6px; }
.sm-tm__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: #d4d4d4;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.sm-tm__dot.is-active { background: var(--sm-accent, #F97316); transform: scale(1.3); }
@media (max-width: 549px) {
  .sm-tm { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
  .sm-tm__inner { padding: 0 16px; }
  .sm-tm__stage { padding: 28px 22px; min-height: 280px; }
  .sm-tm__quote { font-size: 15px; }
  .sm-tm__heading { margin: 0 0 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-tm.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-tm__card { transition: opacity 0.2s ease; transform: none !important; }
}
/* END_SECTION:sm-engomar-testimonials-v3 */

/* START_SECTION:sm-engomar-timeline-v3 (INDEX:77) */
.sm-tl {
  background: #fff;
  padding: 72px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sm-tl__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sm-tl__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sm-accent, #F97316);
  text-align: center;
  margin: 0 0 14px;
}
.sm-tl__heading {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.8px;
  margin: 0 0 48px;
  color: #111;
  line-height: 1.15;
}
.sm-tl__heading em { font-style: normal; color: var(--sm-accent, #F97316); }
.sm-tl__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sm-tl__steps { position: relative; }
.sm-tl__step { position: relative; padding: 0 0 32px 32px; }
.sm-tl__step:last-child { padding-bottom: 0; }
.sm-tl__step::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: -14px;
  width: 1px;
  background: #e5e7eb;
  transition: background 0.4s ease;
}
.sm-tl__step:last-child::before { display: none; }
.sm-tl__step.is-active::before { background: var(--sm-accent, #F97316); }
.sm-tl__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d4d4d4;
  transition: all 0.4s ease;
}
.sm-tl__step.is-active .sm-tl__dot { background: var(--sm-accent, #F97316); }
.sm-tl__time {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 6px;
  transition: color 0.4s ease;
}
.sm-tl__step.is-active .sm-tl__time { color: #111; }
.sm-tl__text {
  font-size: 15px;
  line-height: 1.55;
  color: #777;
  transition: color 0.4s ease;
}
.sm-tl__step.is-active .sm-tl__text { color: #222; }
.sm-tl__media { display: flex; justify-content: center; align-items: center; }
.sm-tl__img { max-width: 100%; height: auto; }
.sm-tl__placeholder { width: 100%; aspect-ratio: 3/4; background: #fafafa; border: 1px solid #f0f0f0; border-radius: 6px; }
@media (max-width: 749px) {
  .sm-tl__grid { grid-template-columns: 1fr; gap: 40px; }
  .sm-tl__media { order: -1; max-width: 280px; margin: 0 auto; }
  .sm-tl { padding: 56px 0; }
}

/* === 1.2 baseline + 1.3 fixes === */
.sm-tl { background: var(--sm-bg, #fff); padding-top: var(--sm-pt-d, 72px); padding-bottom: var(--sm-pb-d, 72px); }
.sm-tl__media picture { display: block; }
.sm-tl__step.is-active .sm-tl__dot { box-shadow: 0 0 0 4px rgba(249,115,22,0.15); }
.sm-tl.sm-fade { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sm-tl.sm-fade.is-in { opacity: 1; transform: none; }
@media (max-width: 749px) {
  .sm-tl { padding-top: var(--sm-pt-m, 56px); padding-bottom: var(--sm-pb-m, 56px); }
}
@media (prefers-reduced-motion: reduce) {
  .sm-tl.sm-fade { opacity: 1; transform: none; transition: none; }
  .sm-tl__step { transition: none; }
}
/* END_SECTION:sm-engomar-timeline-v3 */

/* START_SECTION:sm-engomare-header-v3 (INDEX:78) */
.sm-hd {
  background: var(--sm-bg, #FFFFFF);
  color: var(--sm-fg, #222);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding-top: var(--sm-pt-d, 18px);
  padding-bottom: var(--sm-pb-d, 18px);
  width: 100%;
  position: relative;
  z-index: 5;
}
/* Sticky/fixed: use fixed positioning to bypass any ancestor overflow that would break position:sticky.
   A spacer element below the header preserves layout. */
.sm-hd--sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.sm-hd-spacer { display: block; width: 100%; }
.sm-hd--bb-line { border-bottom: 1px solid var(--sm-border-color, #ececec); }
.sm-hd--bb-accent { border-bottom: 2px solid var(--sm-accent, #F97316); }
.sm-hd.sm-fade { opacity: 0; transition: opacity .5s ease; }
.sm-hd.sm-fade.is-in { opacity: 1; }
.sm-hd__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 36px;
}
.sm-hd__slot { display: flex; align-items: center; min-width: 0; }
.sm-hd__slot--left { justify-content: flex-start; }
.sm-hd__slot--center { justify-content: center; }
.sm-hd__slot--right { justify-content: flex-end; }
/* Position presets — shift the logo without breaking 3-col grid */
.sm-hd--left .sm-hd__inner { grid-template-columns: auto 1fr 1fr; }
.sm-hd--left .sm-hd__slot--center { justify-content: flex-start; order: 0; }
.sm-hd--left .sm-hd__slot--left { order: 1; }
.sm-hd--right .sm-hd__inner { grid-template-columns: 1fr 1fr auto; }
.sm-hd--right .sm-hd__slot--center { justify-content: flex-end; order: 2; }
.sm-hd--right .sm-hd__slot--right { order: 1; }
.sm-hd__logo {
  width: auto;
  max-width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}
.sm-hd--clickable .sm-hd__logo { pointer-events: auto; }
.sm-hd__logo-link { display: inline-flex; text-decoration: none; }
.sm-hd__logo-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--sm-fg, #222);
  text-transform: uppercase;
}
.sm-hd__aux {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sm-fg, #222);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 749px) {
  .sm-hd { padding-top: var(--sm-pt-m, 14px); padding-bottom: var(--sm-pb-m, 14px); }
  .sm-hd__inner { padding: 0 16px; gap: 8px; }
  .sm-hd__aux { font-size: 10px; letter-spacing: 0.8px; }
}
@media (max-width: 549px) {
  .sm-hd__slot--left .sm-hd__aux,
  .sm-hd__slot--right .sm-hd__aux { display: none; }
  .sm-hd--left .sm-hd__inner,
  .sm-hd--right .sm-hd__inner { grid-template-columns: 1fr auto 1fr; }
  .sm-hd--left .sm-hd__slot--center,
  .sm-hd--right .sm-hd__slot--center { justify-content: center; order: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-hd.sm-fade { opacity: 1; transition: none; }
}
/* END_SECTION:sm-engomare-header-v3 */

/* START_SECTION:wishlist-drawer (INDEX:79) */
.wishlist-drawer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-shadow));
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: brightness(1);
    backdrop-filter: brightness(1);
    transition:
      opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing);
  }

  .wishlist-drawer__overlay.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: brightness(0.75);
    backdrop-filter: brightness(0.75);
    transition:
      opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing),
      -webkit-backdrop-filter var(--animation-speed) var(--animation-easing),
      backdrop-filter var(--animation-speed) var(--animation-easing);
  }

  .wishlist-drawer__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 90vw;
    max-width: 400px;
    height: 100%;
    background: var(--color-background);
    box-shadow: var(--modal-shadow);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
  }

  .wishlist-drawer__overlay.is-open .wishlist-drawer__drawer {
    animation: modalSlideInRight var(--animation-speed) var(--animation-easing) forwards;
  }

  .wishlist-drawer__overlay.is-closing .wishlist-drawer__drawer {
    animation: modalSlideOutRight var(--animation-speed) var(--animation-easing) forwards;
  }

  .wishlist-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--padding-xs);
  }

  .wishlist-drawer__title {
    margin-left: var(--margin-sm);
  }

  .wishlist-drawer__close .icon--close {
    font-size: 22px !important;
  }

  .wishlist-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--padding-xs);
  }

  .wishlist-drawer__empty {
    text-align: center;
    padding: var(--padding-xl);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wishlist-drawer__item {
    display: flex;
    align-items: center;
    gap: var(--padding-xs);
    padding: var(--padding-xs);
    text-decoration: none;
    color: inherit;
    transition: var(--animation-link-hover);
  }

  .wishlist-drawer__item:hover {
    opacity: var(--opacity-link-hover);
  }

  .wishlist-drawer__item-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    background-color: white;
    border-radius: calc(var(--card-border-radius) - var(--padding-sm));
  }

  .wishlist-drawer__item-info {
    flex: 1;
    min-width: 0; /* Permet au texte de se tronquer si nécessaire */
  }

  .wishlist-drawer__item-title {
    font-size: var(--font-body--size);
    color: rgb(var(--color-foreground));
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
  }

  .wishlist-drawer__item-remove {
    flex-shrink: 0;
    margin-left: auto;
    border: var(--inputs-border-width) solid var(--color-border);
  }
/* END_SECTION:wishlist-drawer */

/* CSS from block stylesheet tags */
/* START_BLOCK:_accelerated-checkout (INDEX:80) */
shopify-visual-preview-block-list .accelerated-checkout[data-visual-preview-mode] {
    width: 400px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  .shopify-payment-button__more-options {
    color: var(--color-foreground);
  }

  more-payment-options-link a {
    --button-color: var(--color-foreground);
  }

  more-payment-options-link a:hover {
    opacity: var(--opacity-link-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }
/* END_BLOCK:_accelerated-checkout */

/* START_BLOCK:_announcement (INDEX:83) */
.announcement .slide {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: var(--gap);
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:_announcement */

/* START_BLOCK:_article-date (INDEX:85) */
.article-date {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
/* END_BLOCK:_article-date */

/* START_BLOCK:_article-group (INDEX:86) */
.article-card-group {
    display: flex;
    flex-direction: var(--direction-mobile);
    flex-wrap: var(--wrap-mobile);
    justify-content: var(--justify-mobile);
    align-items: var(--align_items-mobile);
    gap: var(--gap-mobile);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: 100%;
  }

  @media (width > 750px) {
    .article-card-group {
      flex-direction: var(--direction);
      flex-wrap: var(--wrap);
      justify-content: var(--justify);
      align-items: var(--align_items);
      gap: var(--gap);
    }
  }
/* END_BLOCK:_article-group */

/* START_BLOCK:_cart-accelerated-checkout (INDEX:88) */
shopify-visual-preview-block-list .accelerated-checkout[data-visual-preview-mode] {
    width: 400px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  more-payment-options-link a {
    --button-color: var(--color-foreground);
  }

  more-payment-options-link a:hover {
    opacity: var(--opacity-link-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }
/* END_BLOCK:_cart-accelerated-checkout */

/* START_BLOCK:_cart-drawer-empty-blocks (INDEX:89) */
.cart-drawer-empty-blocks {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-lg);
    width: 100%;
  }

  @media (width <= 750px) {
    .cart-drawer-empty-blocks .slider-component--one-and-a-half .splide__list {
      width: calc(100vw - 50%);
    }
  }
/* END_BLOCK:_cart-drawer-empty-blocks */

/* START_BLOCK:_cart-drawer-footer-blocks (INDEX:90) */
.cart-footer-blocks {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_cart-drawer-footer-blocks */

/* START_BLOCK:_cart-footer-blocks (INDEX:91) */
.cart-footer-blocks {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_cart-footer-blocks */

/* START_BLOCK:_cart-footer-resume-blocks (INDEX:92) */
.cart-footer-resume-blocks {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_cart-footer-resume-blocks */

/* START_BLOCK:_cart-header-blocks (INDEX:93) */
.cart-header-blocks {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .cart-drawer .cart-header-blocks:not(.card) > div:first-of-type {
    margin-top: var(--padding-md);
  }
/* END_BLOCK:_cart-header-blocks */

/* START_BLOCK:_cart-note (INDEX:94) */
cart-note {
    display: block;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);

    .icon--keyboard_arrow_down {
      display: none;
    }
  }

  cart-note[data-visual-preview-mode] {
    width: 350px;
  }
/* END_BLOCK:_cart-note */

/* START_BLOCK:_cart-progress-bar (INDEX:95) */
.cart-progress-bar {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .cart-progress-bar[data-visual-preview-mode] {
    width: 350px;
  }

  .cart-progress-bar__label {
    margin: 0;
    margin-bottom: var(--margin-md);
    letter-spacing: inherit;
    cursor: default;
    line-height: normal;
    font-weight: 500;
  }

  .cart-progress-bar__bar-container {
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .cart-progress-bar__progress-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fill-available;
  }

  .cart-progress-bar__step-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    font-size: var(--font-body--size-small);
    margin-top: 5px;
  }

  .cart-progress-bar__step-label .icon--check {
    font-size: var(--font-body--size-small) !important;
  }

  .cart-progress-bar__progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
  }

  .cart-progress-bar__progress[value]::-webkit-progress-bar {
    background-color: rgb(from var(--color-primary-button-background) r g b / 15%);
    border-radius: calc(var(--inputs-border-radius) * 20 / 100);
  }

  .cart-progress-bar__progress[value]::-webkit-progress-value {
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    background-color: var(--color-primary-button-background);
    border-radius: calc(var(--inputs-border-radius) * 20 / 100);
  }

  @-moz-document url-prefix() {
    .cart-progress-bar__bar-container {
      justify-content: center;
    }

    .cart-progress-bar__progress-group {
      width: 100%;
    }

    .cart-progress-bar__progress[value]::-moz-progress-bar {
      background: var(--color-primary-button-background);
      border-radius: calc(var(--inputs-border-radius) * 20 / 100);
    }

    .cart-progress-bar__progress[value],
    .cart-progress-bar__progress[value]::-moz-progress-bar {
      border-radius: calc(var(--inputs-border-radius) * 20 / 100);
    }

    .cart-progress-bar__progress[value] {
      border: none;
      border-radius: calc(var(--inputs-border-radius) * 20 / 100);
    }
  }

  .cart-progress-bar__bar-container:has(.cart-progress-bar__progress_2) {
    .cart-progress-bar__progress_1[value]::-webkit-progress-bar,
    .cart-progress-bar__progress_1[value]::-webkit-progress-value {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  .cart-progress-bar__progress_2[value]::-webkit-progress-bar,
  .cart-progress-bar__progress_2[value]::-webkit-progress-value {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .cart-progress-bar__bar-container:has(.cart-progress-bar__progress_3) {
    .cart-progress-bar__progress_2[value]::-webkit-progress-bar,
    .cart-progress-bar__progress_2[value]::-webkit-progress-value {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  .cart-progress-bar__progress_3[value]::-webkit-progress-bar,
  .cart-progress-bar__progress_3[value]::-webkit-progress-value {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
/* END_BLOCK:_cart-progress-bar */

/* START_BLOCK:_comparison-table-data (INDEX:97) */
.comparison-table__cell {
    padding: var(--padding-md);
    text-align: center;
    vertical-align: middle;
  }

  .comparison-table__cell > *:not(.text-block) {
    display: inline-block;
    vertical-align: middle;
  }

  .comparison-table__cell img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .comparison-table__cell:empty {
    opacity: 0;
    background-color: transparent;
  }

  @media (width < 750px) {
    .comparison-table__cell {
      padding: var(--padding-sm);
      overflow: hidden;
      min-width: var(--cell-min-width-mobile);
    }
  }

  .highlight-column-1 {
    tr td:nth-child(1):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(1):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(1):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-2 {
    tr td:nth-child(2):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(2):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(2):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-3 {
    tr td:nth-child(3):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(3):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(3):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-4 {
    tr td:nth-child(4):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(4):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(4):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-5 {
    tr td:nth-child(5):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(5):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(5):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-6 {
    tr td:nth-child(6):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(6):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(6):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-7 {
    tr td:nth-child(7):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(7):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(7):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }

  .highlight-column-8 {
    tr td:nth-child(8):not(:empty) {
      color: var(--color-highlighted-column);
      background-color: var(--color-highlighted-background-column);
    }

    tr:first-child td:nth-child(8):not(:empty) {
      border-top-left-radius: var(--card-border-radius);
      border-top-right-radius: var(--card-border-radius);
    }

    tr:last-child td:nth-child(8):not(:empty) {
      border-bottom-left-radius: var(--card-border-radius);
      border-bottom-right-radius: var(--card-border-radius);
    }
  }
/* END_BLOCK:_comparison-table-data */

/* START_BLOCK:_comparison-table-row (INDEX:98) */
.comparison-table__table tr:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
  }
/* END_BLOCK:_comparison-table-row */

/* START_BLOCK:_discount-code (INDEX:99) */
.cart-discount-block {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);

    .icon--keyboard_arrow_down {
      display: none;
    }
  }

  .cart-discount-block[data-visual-preview-mode] {
    width: 350px;
  }

  cart-discount {
    display: block;
  }

  .cart-discount__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    .textfield {
      width: 100%;
    }

    .textfield input {
      min-width: 100%;
      width: 100%;
    }
  }

  .cart-discount_button {
    min-width: 90px;
  }

  .cart-discount_badge-container {
    margin-top: var(--margin-sm);
  }

  .cart-discount_badge {
    justify-content: center;
    gap: 5px;
    padding-right: 5px !important;
  }

  .cart-discount_badge.loading {
    cursor: default;
    pointer-events: none;

    .cart-discount__discount-text,
    .cart-discount__remove-discount {
      opacity: 0.5;
    }
  }

  .cart-discount__remove-discount {
    cursor: pointer;
    height: 14px;
  }

  .cart-discount_badge .cart-discount__discount-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
/* END_BLOCK:_discount-code */

/* START_BLOCK:_fake-variant-link (INDEX:100) */
.fake-variant-picker__variant {
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: var(--variant-button-min-height);
    min-width: var(--variant-button-min-width);
    max-width: max-content;
    font-size: var(--variant-button-font-size);
    outline: 1px solid transparent;
    transition: all var(--animation-speed-medium) var(--animation-easing);
    padding: var(--variant-button-padding-vertical) var(--variant-button-padding-horizontal);
    color: var(--color-variant-text);
    background-color: var(--color-variant-background);
    border: var(--variant-button-border-width) solid var(--color-variant-border);
    border-radius: var(--inputs-border-radius);
    font-weight: var(--button-primary-font-weight);
    text-transform: var(--button-primary-text-transform);
    letter-spacing: var(--button-letter-spacing);
  }

  .fake-variant-picker__variant--selected {
    background-color: var(--color-selected-variant-background);
    color: var(--color-selected-variant-text);
    border-color: var(--color-selected-variant-border);
  }
/* END_BLOCK:_fake-variant-link */

/* START_BLOCK:_fake-variant-picker (INDEX:101) */
.fake-variant-picker {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .fake-variant-picker__variants {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_fake-variant-picker */

/* START_BLOCK:_footer-bottom-bar (INDEX:102) */
.footer-bottom-bar {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    margin-top: var(--margin-top);
  }

  .footer-bottom-bar--top-border {
    border-top: var(--separator-border-thickness) solid var(--color-border);
  }

  .footer-bottom-bar__content {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    grid-template-rows: auto;
    gap: var(--gap-mobile);
    width: 100%;
  }

  @media (width > 750px) {
    .footer-bottom-bar__content {
      gap: var(--gap);
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_BLOCK:_footer-bottom-bar */

/* START_BLOCK:_footer-policy-list (INDEX:103) */
.policy-list {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .policy-list__links {
    display: flex;
    gap: var(--gap-xs) var(--padding-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;

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

  .policy-list__link {
    text-decoration: underline;
    color: var(--color-foreground);
    transition: var(--animation-link-hover);
    font-size: var(--font-body--size-small);

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }
/* END_BLOCK:_footer-policy-list */

/* START_BLOCK:_header-drawer-menu-header (INDEX:105) */
.header-drawer-menu-header {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    margin-bottom: var(--margin-sm);
  }
/* END_BLOCK:_header-drawer-menu-header */

/* START_BLOCK:_header-drawer-menu-under-menu (INDEX:106) */
.header-drawer-menu-under-menu {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }
/* END_BLOCK:_header-drawer-menu-under-menu */

/* START_BLOCK:_header-drawer-menu (INDEX:107) */
/* Menu mobile */
  .header__mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-shadow));
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: brightness(1);
    backdrop-filter: brightness(1);
    transition:
      opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing);
  }

  .header__mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: brightness(0.75);
    backdrop-filter: brightness(0.75);
    transition:
      opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing),
      -webkit-backdrop-filter var(--animation-speed) var(--animation-easing),
      backdrop-filter var(--animation-speed) var(--animation-easing);
  }

  .header__mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 90vw;
    max-width: 400px;
    height: 100%;
    background: var(--color-background);
    box-shadow: var(--modal-shadow);
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
  }

  .header__mobile-menu-overlay.is-open .header__mobile-menu {
    animation: modalSlideInLeft var(--animation-speed) var(--animation-easing) forwards;
  }

  .header__mobile-menu-overlay.is-closing .header__mobile-menu {
    animation: modalSlideOutLeft var(--animation-speed) var(--animation-easing) forwards;
  }

  .header__mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: var(--padding-xs);
  }

  .header__mobile-menu-footer {
    padding: var(--padding-sm);
    border-top: var(--separator-border-thickness) solid var(--color-border);
  }

  .header__mobile-menu-close .icon--close {
    font-size: 22px !important;
  }

  .header__mobile-menu-nav {
    flex: 1;
    padding: var(--padding-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    overflow-y: auto;
  }

  .header__mobile-menu-nav--uppercase .header__mobile-menu-link-text {
    text-transform: uppercase;
  }

  .header__mobile-menu-link-text {
    font-weight: var(--font-weight);
  }

  .header__mobile-menu-link {
    display: block;
    padding: var(--padding-sm);
    text-decoration: none;
    color: inherit;
    font-size: var(--font-h6--size);
    border-radius: var(--inputs-border-radius);
    transition: background-color var(--animation-speed) var(--animation-easing);
  }

  .header__mobile-menu-link:hover {
    background-color: var(--color-input-border-low-opacity);
  }

  /* Accordéons des sous-menus */
  .header__mobile-menu-accordion {
    width: 100%;
  }

  .header__mobile-menu-accordion summary {
    list-style: none;
    cursor: pointer;
  }

  .header__mobile-menu-accordion summary::-webkit-details-marker {
    display: none;
  }

  .header__mobile-menu-link--parent,
  .header__mobile-menu-link--child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header__mobile-menu-link--parent .icon,
  .header__mobile-menu-link--child .icon {
    transition: transform var(--animation-speed-fast) var(--animation-easing);
    flex-shrink: 0;
  }

  .header__mobile-menu-accordion[open] > summary .icon {
    transform: rotate(180deg);
  }

  .header__mobile-menu-submenu {
    padding-left: var(--padding-sm);
  }

  /* Niveaux d'indentation */
  .header__mobile-menu-link--child {
    font-size: var(--font-body--size-emphasized);
    padding-left: var(--padding-sm);
  }

  .header__mobile-menu-link--grandchild {
    font-size: var(--font-body--size);
    padding-left: var(--padding-sm);
  }

  .header__mobile-menu-submenu--level-2 {
    padding-left: var(--padding-sm);
  }
/* END_BLOCK:_header-drawer-menu */

/* START_BLOCK:_header-megamenu-group (INDEX:108) */
.megamenu-group {
    gap: var(--gap);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: var(--width);
  }

  .megamenu-group.card {
    padding: var(--padding-vertical) var(--padding-horizontal);
  }

  shopify-visual-preview-block-list .megamenu-group[data-visual-preview-mode] {
    width: 100%;
    max-width: 450px;
  }

  .megamenu-group--flex {
    display: flex;
    flex-direction: var(--direction);
    flex-wrap: var(--wrap);
    justify-content: var(--justify);
    align-items: var(--align_items);
  }

  .megamenu-group--grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    grid-template-rows: auto;
  }
/* END_BLOCK:_header-megamenu-group */

/* START_BLOCK:_header-megamenu (INDEX:109) */
.custom-megamenu-content {
    gap: var(--gap);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
  }

  .custom-megamenu-content--flex {
    display: flex;
    flex-direction: var(--direction);
    flex-wrap: var(--wrap);
    justify-content: var(--justify);
    align-items: var(--align_items);
  }

  .custom-megamenu-content--grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    grid-template-rows: auto;
  }
/* END_BLOCK:_header-megamenu */

/* START_BLOCK:_header-notification (INDEX:110) */
.header-notification {
    width: 100%;
    padding: var(--padding-xs);
    background: rgb(var(--color-background));
    border-radius: calc(var(--card-border-radius) - var(--padding-xs));
    transition: background-color var(--animation-speed) var(--animation-easing);
    font-size: var(--font-body--size);
  }

  .header-notification:hover {
    background-color: rgb(from var(--color-foreground) r g b / 5%);
    font-weight: 500;
  }

  .header-notification-link {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    text-decoration: none;
    color: rgb(var(--color-foreground));
    width: 100%;
  }

  .header-notification-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center center;
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.67));
  }

  .header-notification-title {
    font-weight: 500;
  }
/* END_BLOCK:_header-notification */

/* START_BLOCK:_header-notifications (INDEX:111) */
.header-notifications {
    line-height: 0;
    position: relative;
  }

  .header-notifications__icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .header-notifications__popup {
    border: var(--container-border-thickness) solid var(--color-border);
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 240px;
    max-height: 350px;
    overflow-y: auto;
    padding: var(--padding-sm);
  }

  .header-notifications__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_header-notifications */

/* START_BLOCK:_image-banner (INDEX:112) */
.image-banner {
    position: relative;
    overflow: hidden;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    height: 100%;

    &.card {
      padding: 0;
    }
  }

  .image-banner__media-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color);
    opacity: calc(var(--opacity) / 100);
    z-index: 1;
  }

  .image-banner__media {
    position: absolute;
    width: 100%;
    height: 100%;

    img,
    video,
    deferred-media,
    .placeholder-image {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center center;
      border-radius: 0;
      overflow: hidden;
      position: relative;
    }

    /* Pour éviter les bandes noires sur desktop */
    .image-banner__external-video .deferred-media__video {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }

    .image-banner__external-video .deferred-media__video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Fix pour éliminer les bandes noires sur mobile */
    @media (width <= 1000px) {
      .image-banner__external-video {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 0;
      }

      .image-banner__external-video .deferred-media__video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-bottom: 0;
      }

      .image-banner__external-video .deferred-media__video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 177.77vh; /* Pour un ratio 16:9 */
        height: 100vh;
        min-width: 100%;
        min-height: 100%;
      }
    }
  }

  .image-banner__content-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;

    .image-banner__content {
      width: 100%;
      min-height: var(--banner-height-mobile);
      display: flex;
      flex-direction: column;
      justify-content: var(--justify-mobile);
      align-items: var(--align-items-mobile);
      padding: var(--padding-vertical) var(--padding-horizontal);
    }
  }

  @media (width > 750px) {
    .image-banner__content-wrapper .image-banner__content {
      min-height: var(--banner-height);
      justify-content: var(--justify);
      align-items: var(--align-items);
    }
  }
/* END_BLOCK:_image-banner */

/* START_BLOCK:_marquee-image (INDEX:113) */
.marquee-image-block {
    width: var(--width-mobile);

    @media (width > 750px) {
      width: var(--width-desktop);
    }
  }

  .marquee-image-block--height-fill .marquee-image-block__image {
    height: 100%;
  }

  .marquee-image-block__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
    width: 100%;
  }
/* END_BLOCK:_marquee-image */

/* START_BLOCK:_navigation-link (INDEX:114) */
.navigation-item {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    justify-content: center;
    text-decoration: none;
    color: var(--color-foreground);
    min-width: fit-content;
    background-color: var(--color-background);
  }

  shopify-visual-preview-block-list .navigation-item[data-visual-preview-mode] {
    width: 150px;
  }

  .navigation__title {
    font-size: var(--font-body--size);
    color: var(--color-foreground);
    line-height: 1;
  }

  .navigation-item img {
    width: var(--image-width-mobile);
    height: var(--image-width-mobile);
    object-fit: cover;
    border-radius: 50px;
    overflow: hidden;
    object-position: center center;
    background-color: #f8f8f8;
  }

  .navigation--row .navigation-item {
    flex-direction: row;
    border-radius: calc(var(--small-multiplier) * var(--button-border-radius));
    border: var(--container-border-thickness) solid var(--color-border);
    padding: var(--padding-xxs) var(--padding-sm);
    transition: 0.3s;
    min-height: calc(var(--image-width-mobile) + 2 * var(--padding-xxs));

    img {
      border-radius: calc(calc(var(--small-multiplier) * var(--button-border-radius)) - var(--padding-xxs));
    }

    &.navigation-item--with-image {
      padding-left: var(--padding-xxs);
    }

    &.navigation-item--selected,
    &:hover {
      border: var(--container-border-thickness) solid var(--color-foreground);
    }
  }

  .navigation--column .navigation-item {
    flex-direction: column;

    .navigation__title {
      max-width: 100px;
      text-align: center;
    }

    img,
    .navigation-item__placeholder {
      outline: var(--container-border-thickness) solid var(--color-border);
      outline-offset: 0.2rem;
      transition: 0.3s;
    }

    &.navigation-item--selected img,
    &.navigation-item--selected .navigation-item__placeholder,
    &:hover img,
    &:hover .navigation-item__placeholder {
      outline: var(--container-border-thickness) solid var(--color-foreground);
      outline-offset: 0.2rem;
    }
  }

  @media (width > 750px) {
    .navigation-item img {
      width: var(--image-width-desktop);
      height: var(--image-width-desktop);
    }
  }
/* END_BLOCK:_navigation-link */

/* START_BLOCK:_password-form (INDEX:115) */
.password-form-container {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .password-form {
    margin-top: var(--margin-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    max-width: 100%;
    gap: var(--gap-md);
  }
/* END_BLOCK:_password-form */

/* START_BLOCK:_product-add-to-cart-button (INDEX:116) */
shopify-visual-preview-block-list .product-add-to-cart-button[data-visual-preview-mode] {
    width: 400px;
  }

  .product-add-to-cart-button {
    display: flex;
    flex-direction: row;
    gap: var(--gap-sm);
    align-items: center;
  }

  .sticky-add-to-cart {
    width: 100%;
  }

  .sticky-add-to-cart[data-active='false'] {
    bottom: -150px;
  }

  .sticky-add-to-cart[data-active='true'] {
    bottom: 0;
    position: fixed;
    left: 0;
    padding: var(--padding-sm) 0;
    z-index: 2;
    border-top: var(--separator-border-thickness) solid var(--color-border);
    transition: bottom 300ms ease-in-out;

    .sticky-add-to-cart__content {
      width: 100%;
      max-width: var(--page-width);
      margin: 0 auto;
      padding: 0 var(--page-margin-mobile);
    }
  }

  @media (width > 750px) {
    .sticky-add-to-cart[data-active='true'] {
      padding: var(--padding-md) 0;

      .sticky-add-to-cart__content {
        padding: 0 var(--page-margin-desktop);
      }
    }
  }

  .product-add-to-cart-button .button {
    container-type: inline-size;
  }

  #klaviyo-bis-button-container {
    margin-bottom: 0 !important;
  }

  #klaviyo-bis-button-container button {
    appearance: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    height: calc(var(--inputs-min-height) - (2 * var(--button-padding-vertical))) !important;
    font-size: var(--button-font-size) !important;
    outline: 1px solid transparent !important;
    transition: all var(--animation-speed-medium) var(--animation-easing) !important;
    padding: var(--button-padding-vertical) var(--button-padding-horizontal) !important;
    color: var(--color-primary-button-text) !important;
    background-color: var(--color-primary-button-background) !important;
    border: var(--button-primary-border-width) solid var(--color-primary-button-border) !important;
    border-radius: var(--button-border-radius) !important;
    font-weight: var(--button-primary-font-weight) !important;
    text-transform: var(--button-primary-text-transform) !important;
    width: -webkit-fill-available !important;
    font-family: var(--font-body--family) !important;
    font-weight: 500 !important;
  }

  .product-add-to-cart-button .full-add-to-cart-text {
    display: block;
  }

  .product-add-to-cart-button .small-add-to-cart-text {
    display: none;
  }

  @container (width < 200px) {
    .product-add-to-cart-button .button__separator,
    .product-add-to-cart-button .price-container {
      display: none;
    }

    .product-add-to-cart-button .full-add-to-cart-text {
      display: block;
    }

    .product-add-to-cart-button .small-add-to-cart-text {
      display: none;
    }
  }

  @container (width < 270px) {
    .product-add-to-cart-button .full-add-to-cart-text {
      display: none;
    }

    .product-add-to-cart-button .small-add-to-cart-text {
      display: block;
    }
  }
/* END_BLOCK:_product-add-to-cart-button */

/* START_BLOCK:_product-card-group (INDEX:117) */
.product-card-group-link {
    display: contents;
    color: inherit;
    text-decoration: none;
  }

  .product-card-group {
    display: flex;
    flex-direction: var(--direction-mobile);
    flex-wrap: var(--wrap-mobile);
    justify-content: var(--justify-mobile);
    align-items: var(--align_items-mobile);
    gap: var(--gap-mobile);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: 100%;
  }

  @media (width > 750px) {
    .product-card-group {
      flex-direction: var(--direction);
      flex-wrap: var(--wrap);
      justify-content: var(--justify);
      align-items: var(--align_items);
      gap: var(--gap);
    }
  }
/* END_BLOCK:_product-card-group */

/* START_BLOCK:_product-card-media-gallery (INDEX:118) */
.product-card-media-gallery-block {
    position: relative;
  }

  .product-card-media-gallery .splide__slide {
    margin-right: var(--card-padding) !important;
  }

  .product-card-media-gallery .splide__arrow {
    background-color: transparent;
    border: none;
  }

  .product-card-media-gallery__media {
    height: 100%;
  }

  .product-card-media-gallery__media--rounded {
    border-radius: var(--card-border-radius);
    overflow: hidden;
  }

  .product-card.card .product-card-media-gallery__media--rounded {
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
  }

  .slider-component--one-and-a-half product-card-media-gallery .splide__list {
    width: 100%;
  }

  .product-card-media-gallery__add-to-wishlist-button {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    bottom: var(--padding-xs);
    right: var(--padding-xs);
    background-color: transparent;
  }

  .product-card-media-gallery__add-to-wishlist-button .button {
    background-color: transparent;
  }

  @media (width > 750px) {
    product-card-media-gallery .splide__arrow,
    product-card-media-gallery .splide__arrow:disabled {
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }

    product-card:hover product-card-media-gallery .splide__arrow {
      opacity: 1;
    }

    product-card:hover product-card-media-gallery .splide__arrow:disabled {
      opacity: 0.5;
    }

    .product-card-media-gallery__add-to-wishlist-button {
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }

    .product-card:hover .product-card-media-gallery__add-to-wishlist-button {
      opacity: 1;
    }
  }
/* END_BLOCK:_product-card-media-gallery */

/* START_BLOCK:_product-card-quick-add (INDEX:119) */
.quick-add-component {
    display: block;
    width: 100%;
    cursor: auto;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .quick-add-component .dialog-modal {
    overflow-x: hidden;
  }

  .quick-add-component .button {
    container-type: inline-size;
  }

  .quick-add-button .full-add-to-cart-text {
    display: block;
  }

  .quick-add-button .small-add-to-cart-text {
    display: none;
  }

  @container (width < 200px) {
    .quick-add-button .full-add-to-cart-text {
      display: none;
    }

    .quick-add-button .small-add-to-cart-text {
      display: block;
    }
  }

  .quick-add-component .dialog-modal__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .quick-add-component .dialog-modal__content > * {
    margin-block: 0;
  }

  .quick-add-component .dialog-modal__content .fake-variant-picker,
  .quick-add-component .dialog-modal__content .slider-block,
  .quick-add-component .dialog-modal__content .stories__container {
    display: none;
  }

  .quick-add-component .product-section__medias--sticky,
  .quick-add-component .product-section__product-info--sticky {
    position: relative !important;
  }
/* END_BLOCK:_product-card-quick-add */

/* START_BLOCK:_product-form (INDEX:122) */
shopify-visual-preview-block-list product-form[data-visual-preview-mode] {
    width: 400px;
  }

  .product-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_product-form */

/* START_BLOCK:_product-media-gallery (INDEX:123) */
@media (width > 750px) {
    .product-media-gallery .splide__arrow,
    .product-media-gallery .splide__arrow:disabled,
    .product-media-gallery .splide__pagination {
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }

    .product-media-gallery:hover .splide__arrow,
    .product-media-gallery:hover .splide__pagination {
      opacity: 1;
    }

    .product-media-gallery:hover .splide__arrow:disabled {
      opacity: 0.5;
    }
  }

  @media (width > 750px) {
    .product-media-gallery--grid {
      .splide__list {
        display: grid;
        grid-template-columns: repeat(var(--grid-columns), 1fr);
        gap: var(--grid-gap);

        .product-media-gallery__media--full-width {
          grid-column: span var(--grid-columns);
        }
      }
      .product-media-gallery__thumbnails {
        display: none;
      }
    }
  }

  .product-media-gallery__media {
    height: 100%;
  }

  .product-media-gallery__media--rounded {
    border-radius: var(--card-border-radius);
    overflow: hidden;
  }

  .product-media-gallery .splide__arrow {
    background-color: transparent;
    border: none;
  }

  .product-media-gallery .splide__pagination {
    bottom: 5px;
  }

  .product-media-gallery__thumbnails {
    margin-top: 10px;
  }

  .product-media-gallery__thumbnail {
    position: relative;
    height: auto !important;

    .product-media-gallery__thumbnail-play-button {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.1);

      .icon--play_circle {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        position: absolute;
        font-size: 36px !important;
        color: var(--color-primary-button-text);
      }
    }
  }

  .product-media-gallery__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-media-gallery__thumbnail--rounded,
  .product-media-gallery__thumbnail--rounded .product-media-gallery__thumbnail-image,
  .product-media-gallery__thumbnail--rounded .product-media-gallery__thumbnail-play-button {
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
  }
/* END_BLOCK:_product-media-gallery */

/* START_BLOCK:_product-quantity-selector (INDEX:124) */
shopify-visual-preview-block-list .product-quantity-selector-block[data-visual-preview-mode] {
    width: 100px;
  }
/* END_BLOCK:_product-quantity-selector */

/* START_BLOCK:_product-variant-picker (INDEX:125) */
shopify-visual-preview-block-list variant-picker[data-visual-preview-mode] {
    width: 350px;
  }

  variant-picker {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .variant-picker__options {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .variant-picker__option {
    border: none;
    padding: 0;
  }

  .variant-picker__option-name {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }

  .variant-picker__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_product-variant-picker */

/* START_BLOCK:_quantity-breaks-item (INDEX:127) */
.quantity-break {
    width: 100%;
    padding: var(--padding-md) var(--padding-xs);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--padding-xs);
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    min-width: 0;
    flex: 1 1 0;
    position: relative;
    color: var(--color-variant-text);
    background-color: var(--color-variant-background);
    border: var(--variant-button-border-width) solid var(--color-variant-border);

    &.quantity-break--no-overflow {
      overflow: visible;
    }

    &.quantity-break--selected {
      border: var(--container-border-thickness) solid var(--color-selected-variant-border);
    }

    &.quantity-break--disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    &.quantity-break--with-image {
      padding: var(--padding-xs);
    }

    &:has(.quantity-break__banner--full-width) {
      gap: var(--gap-sm);
    }
  }

  .quantity-break__main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: var(--padding-xs);
  }

  .quantity-break__price-and-title-container {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    align-items: center;
  }

  .quantity-break__title-and-badge-container {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    flex-wrap: wrap;
    justify-content: center;
  }

  .quantity-break__title {
    font-size: var(--font-body--size);
    font-weight: 500;
    text-align: center;
    line-height: var(--font-body--size);
  }

  .quantity-break__description p,
  .quantity-break__description ul li,
  .quantity-break__description ol li {
    font-size: var(--font-body--size-small);
  }

  .quantity-break__description p {
    margin: 0;
  }

  .quantity-break__description ul {
    margin: 0;
    padding-left: var(--padding-xs);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .quantity-break__description ol {
    margin: 0;
    padding-left: calc(var(--padding-xs) * 2);
  }

  .quantity-break__description ul li {
    position: relative;
    padding-left: var(--padding-xs);
  }

  .quantity-break__description ul li::before {
    font-family: var(--icon-font);
    content: 'check';
    position: absolute;
    left: calc(-1 * var(--padding-xs));
  }

  .quantity-break__image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    img {
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: calc(var(--card-border-radius) - var(--padding-xs));
    }
  }

  .quantity-break__image-badge {
    position: absolute;
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-size: var(--font-body--size-small);
    border-radius: calc(var(--card-border-radius) - (2 * var(--padding-xs)));
    z-index: 1;
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;

    &.quantity-break__image-badge--topright {
      top: var(--padding-xs);
      right: var(--padding-xs);
    }

    &.quantity-break__image-badge--topleft {
      top: var(--padding-xs);
      left: var(--padding-xs);
    }

    &.quantity-break__image-badge--bottomright {
      bottom: var(--padding-xs);
      right: var(--padding-xs);
    }

    &.quantity-break__image-badge--bottomleft {
      bottom: var(--padding-xs);
      left: var(--padding-xs);
    }
  }

  .quantity-break__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .quantity-break__price-container {
    display: flex;
    gap: var(--gap-xs);
    flex-wrap: wrap;
    justify-content: center;
    font-size: var(--font-body--size-small);
    color: var(--color-foreground);

    .quantity-break__price-container_unit-price {
      font-size: var(--font-body--size-small);
      opacity: 0.8;
      text-align: center;
    }
  }

  .quantity-break__banner {
    &.quantity-break__banner--full-width {
      width: calc(100% + 2 * var(--padding-xs));
      z-index: 1;
    }

    &.quantity-break__banner--full-width.quantity-break__banner--bottom {
      border-top-right-radius: 0;
      border-top-left-radius: 0;
      margin-bottom: calc(-1 * var(--padding-md));
    }

    &.quantity-break__banner--full-width.quantity-break__banner--top {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      margin-top: calc(-1 * var(--padding-md));
    }

    &.quantity-break__banner--overlap {
      max-width: calc(max-content + var(--padding-xs));
      width: max-content;
      z-index: 1;
    }

    &.quantity-break__banner--overlap.quantity-break__banner--bottom {
      position: absolute;
      bottom: 0;
      transform: translateY(65%);
    }

    &.quantity-break__banner--overlap.quantity-break__banner--top {
      position: absolute;
      top: 0;
      transform: translateY(-65%);
    }
  }

  .quantity-break.quantity-break--with-image .quantity-break__banner {
    &.quantity-break__banner--full-width.quantity-break__banner--bottom {
      margin-bottom: calc(-1 * var(--padding-xs));
    }

    &.quantity-break__banner--full-width.quantity-break__banner--top {
      margin-top: calc(-1 * var(--padding-xs));
    }
  }

  .quantity-breaks-container--column {
    .quantity-break__description p,
    .quantity-break__description ul li {
      text-align: center;
    }

    .quantity-break__banner {
      &.quantity-break__banner--normal.quantity-break__banner--bottom {
        margin-bottom: calc(-1 * var(--padding-xs));
      }

      &.quantity-break__banner--normal.quantity-break__banner--top {
        margin-top: calc(-1 * var(--padding-xs));
      }
    }

    .quantity-break--with-image .quantity-break__banner {
      &.quantity-break__banner--normal.quantity-break__banner--bottom {
        margin-bottom: 0;
      }

      &.quantity-break__banner--normal.quantity-break__banner--top {
        margin-top: 0;
      }
    }

    .quantity-break--with-image {
      &:has(.quantity-break__banner--bottom.quantity-break__banner--overlap) {
        padding-bottom: var(--padding-md);
      }

      &:has(.quantity-break__banner--top.quantity-break__banner--overlap) {
        padding-top: var(--padding-md);
      }
    }
  }

  .quantity-breaks-container--row {
    .quantity-break {
      flex-direction: column;
      justify-content: flex-start;
      position: relative;
      flex: auto;
    }

    .quantity-break:not(.quantity-break--with-image) {
      padding: var(--padding-md);

      .quantity-break__banner--full-width {
        width: calc(100% + 2 * var(--padding-md));
      }
    }

    .quantity-break:has(.quantity-break__banner--overlap.quantity-break__banner--top) {
      margin-top: var(--margin-sm);
    }

    .quantity-break:has(.quantity-break__banner--overlap.quantity-break__banner--bottom) {
      margin-bottom: var(--margin-sm);
    }

    .quantity-break__main-content {
      flex-direction: row;
      gap: var(--gap-sm);
      align-items: flex-start;
    }

    .quantity-break__content {
      align-self: stretch;
      justify-content: center;
      width: 100%;
    }

    .quantity-break__image-container {
      width: auto;

      img {
        width: var(--image-width);
        max-width: var(--image-width);
      }
    }

    .quantity-break__price-and-title-container {
      align-items: flex-start;
    }

    .quantity-break__title-and-badge-container {
      justify-content: flex-start;
      gap: var(--gap-sm);
    }

    .quantity-break__banner {
      &.quantity-break__banner--normal {
        position: absolute;
        right: var(--padding-xs);
      }

      &.quantity-break__banner--normal.quantity-break__banner--top {
        top: var(--padding-xs);
      }

      &.quantity-break__banner--normal.quantity-break__banner--bottom {
        bottom: var(--padding-xs);
      }

      &.quantity-break__banner--overlap {
        right: var(--padding-xs);
      }
    }
  }

  .quantity-breaks-container.quantity-breaks-container--top {
    align-items: flex-end;
  }

  .quantity-breaks-container.quantity-breaks-container--bottom {
    align-items: flex-start;
  }

  /* Sélection de variante */

  .quantity-break__variant-picker-container {
    display: none;
  }

  .quantity-breaks--with-variant-picker .quantity-break--selected .quantity-break__variant-picker-container {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .quantity-break__variant-picker-row {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .quantity-break__variant-thumbnail {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: calc(var(--card-border-radius) - var(--padding-md));
    overflow: hidden;
    background-color: var(--color-background);

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

  .quantity-break__variant-thumbnail--hidden {
    display: none;
  }

  .quantity-breaks:not([data-show-variant-thumbnail='true']) .quantity-break__variant-thumbnail {
    display: none;
  }

  /* Cross-sell */

  .quantity-break__cross-sells {
    display: none;
    flex-direction: column;
    width: calc(100% + 2 * var(--padding-xs));
    margin-bottom: calc(-1 * var(--padding-xs));
    border-top: var(--variant-button-border-width) solid var(--color-variant-border);
    padding: var(--padding-xs) var(--padding-sm);
    gap: var(--gap-sm);
  }

  .quantity-break:not(.quantity-break--with-image) .quantity-break__cross-sells {
    margin-bottom: calc(-1 * var(--padding-md));
  }

  .quantity-breaks-container--row .quantity-break:not(.quantity-break--with-image) .quantity-break__cross-sells {
    width: calc(100% + 2 * var(--padding-md));
  }

  .quantity-breaks-container--column .quantity-break:not(.quantity-break--with-image) .quantity-break__cross-sells {
    width: calc(100% + 2 * var(--padding-xs));
  }

  .quantity-breaks-container--column {
    .quantity-break__cross-sells {
      padding: var(--padding-xs);
    }

    .quantity-break__cross-sell-image {
      display: none;
    }

    .quantity-break__cross-sell-info {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: var(--gap-xs);
    }

    .quantity-break__cross-sell-title {
      font-size: var(--font-body--size-small);
    }
  }

  .quantity-break--selected .quantity-break__cross-sells {
    display: flex;
  }

  .quantity-break__cross-sell {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .quantity-break__cross-sell-image {
    flex-shrink: 0;
    margin-right: var(--margin-sm);
  }

  .quantity-break__cross-sell-image img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: calc(var(--card-border-radius) - var(--padding-sm));
  }

  .quantity-break__cross-sell-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-xs);
    flex-wrap: wrap;
    flex: 1;
  }

  .quantity-break__cross-sell-title {
    font-size: var(--font-body--size);
    font-weight: 500;
  }

  .quantity-break__cross-sell-price {
    font-size: var(--font-body--size-small);
  }

  .quantity-break__cross-sell-price .price-container {
    justify-content: flex-start;
  }

  quantity-break-variant-picker {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

    &:not(:last-child) {
      margin-bottom: 1rem;
    }

    .form__label {
      margin: 0;
    }

    .quantity-break__variant-picker-container__option--dropdown {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
  }
/* END_BLOCK:_quantity-breaks-item */

/* START_BLOCK:_quantity-breaks (INDEX:128) */
.quantity-breaks {
    display: block;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .quantity-breaks[data-visual-preview-mode] {
    width: 450px;
  }

  .product-form__form .toggle-cross-sell:not(:first-of-type) {
    display: none;
  }

  .quantity-breaks-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .quantity-breaks-container.quantity-breaks-container--row {
    flex-direction: column;
  }

  .product-section__product-info:has(.quantity-breaks) .product-quantity-selector-block {
    display: none;
  }

  .product-section__product-info:has(.quantity-breaks--with-variant-picker) variant-picker,
  .product-section__product-info:has(.quantity-breaks--with-variant-picker) .subscription {
    display: none;
  }
/* END_BLOCK:_quantity-breaks */

/* START_BLOCK:_slide (INDEX:130) */
.slide {
    display: flex;
    flex-direction: var(--direction);
    flex-wrap: var(--wrap);
    justify-content: var(--justify);
    align-items: var(--align_items);
    gap: var(--gap);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: 100%;
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-icon (INDEX:131) */
.social-icon__icon {
    transition: var(--animation-link-hover);
  }

  .social-icon__icon:hover {
    opacity: var(--opacity-link-hover);
  }
/* END_BLOCK:_social-icon */

/* START_BLOCK:_story (INDEX:132) */
.story {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    max-width: 65px;
    padding: 0;
    margin: 0;
  }

  .story__bubble {
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 55px;
    height: 55px;

    .icon {
      font-size: 32px !important;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      color: white;
    }

    &:hover {
      transform: scale(102%);
    }

    &:before {
      width: 60px;
      height: 60px;
      content: '';
      background-color: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    &:after {
      content: '';
      width: 65px;
      height: 65px;
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    img {
      z-index: 3;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      z-index: 2;
      object-fit: cover;
    }
  }

  .story__bubble-label {
    font-size: var(--font-body--size-small);
    padding: 0;
    margin: 0;
    color: var(--color-foreground);
  }

  .story-slider__slide {
    /* border-radius: var(--card-border-radius); */
    overflow: hidden;
  }

  .story-slider__slide img,
  .story-slider__slide video {
    aspect-ratio: 3/5;
    object-fit: cover;
    max-width: 100%;
    height: 100%;
  }

  .story__slider {
    height: 100%;

    & > .splide__track {
      height: 100%;
    }

    & > .splide__arrows > .splide__arrow {
      height: 100%;
      width: 50%;
      border: none;
      background-color: transparent;
      color: var(--color-foreground);
    }

    & > .splide__arrows > .splide__arrow--prev {
      left: 0;
      justify-content: flex-start;

      .icon {
        margin-left: 1rem;
      }
    }

    & > .splide__arrows > .splide__arrow--next {
      right: 0;
      justify-content: flex-end;

      .icon {
        margin-right: 1rem;
      }
    }

    .splide__arrow:disabled {
      opacity: 0.5;
    }
  }

  .story__header {
    position: absolute;
    left: 0;
    top: 0;
    padding: var(--padding-md);
    width: 100%;
    z-index: 1;
    background: linear-gradient(0deg, #0000 6.99%, #00000080 163.32%);

    /* Force GPU layer pour iOS */
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }

  .story__progress-bars {
    display: flex;
    flex-direction: row;
    gap: 3px;
  }

  .story__progress-bar {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    flex: 1;
    min-width: 0;
    height: 2.5px;
  }

  .story__progress-bar[value]::-webkit-progress-bar {
    background-color: rgb(from white r g b / 15%);
    border-radius: var(--card-border-radius);
  }

  .story__progress-bar[value]::-webkit-progress-value {
    background-color: white;
    border-radius: var(--card-border-radius);
  }

  .story__heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: var(--margin-md) 0;
    gap: var(--gap-sm);
    font-size: var(--font-body--size-small);
    color: white;

    img {
      border-radius: 50%;
      width: 32px;
      height: 32px;
      object-fit: cover;
    }
  }
/* END_BLOCK:_story */

/* START_BLOCK:_subscription (INDEX:133) */
.subscription {
    display: block;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .subscription[data-visual-preview-mode] {
    width: 450px;
  }

  /* Par défaut Shopify affiche un message de consentement sous le bouton d'achat rapide, on le cache */
  #shopify-buyer-consent {
    display: none;
  }

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

  .subscription__option {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    padding: var(--padding-md);
    cursor: pointer;
    transition: border-color 0.2s ease;
    color: var(--color-variant-text);
    background-color: var(--color-variant-background);
    border: var(--inputs-border-width) solid var(--color-variant-border);
  }

  .subscription__option.subscription__option--selected {
    border: var(--inputs-border-width) solid var(--color-selected-variant-border);
  }

  .subscription__option-radio {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .subscription__option .radio > .radio__label {
    font-size: var(--font-body--size);
    font-weight: 500;
  }

  .subscription__option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-sm);
    width: 100%;
  }

  .subscription__option-price {
    flex-shrink: 0;
  }

  .subscription__option-price .prices {
    font-size: var(--font-body--size);
  }

  .subscription__frequency {
    width: 100%;
  }

  .subscription__frequency-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    border: none;
    padding: 0;
  }

  .subscription__frequency-button input {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
  }

  .subscription__frequency-button input + label {
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--variant-button-font-size);
    transition: all var(--animation-speed-medium) var(--animation-easing);
    color: var(--color-variant-text);
    background-color: var(--color-variant-background);
    border: var(--variant-button-border-width) solid var(--color-variant-border);
    font-weight: var(--button-primary-font-weight);
    text-transform: var(--button-primary-text-transform);
    letter-spacing: var(--button-letter-spacing);
    padding: calc(var(--button-padding-vertical) / 2) calc(var(--button-padding-horizontal) * var(--small-multiplier));
    min-height: calc(var(--small-multiplier) * var(--inputs-min-height));
    min-width: calc(var(--small-multiplier) * var(--inputs-min-width));
    border-radius: calc(var(--small-multiplier) * var(--button-border-radius));
  }

  .subscription__frequency-button input:checked + label {
    background-color: var(--color-selected-variant-background);
    color: var(--color-selected-variant-text);
    border-color: var(--color-selected-variant-border);
  }

  .subscription__option-description p,
  .subscription__option-description ul li,
  .subscription__option-description ol li {
    font-size: var(--font-body--size-small);
  }

  .subscription__option-description p {
    margin: 0;
  }

  .subscription__option-description ul {
    margin: 0;
    padding-left: var(--padding-xs);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .subscription__option-description ol {
    margin: 0;
    padding-left: calc(var(--padding-xs) * 2);
  }

  .subscription__option-description ul li {
    position: relative;
    padding-left: var(--padding-xs);
  }

  .subscription__option-description ul li::before {
    font-family: var(--icon-font);
    content: 'check';
    position: absolute;
    left: calc(-1 * var(--padding-xs));
  }
/* END_BLOCK:_subscription */

/* START_BLOCK:_tab (INDEX:134) */
.tab__button {
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: var(--tab-button-min-height);
    width: max-content;
    font-size: var(--tab-button-font-size);
    outline: 1px solid transparent;
    transition: all var(--animation-speed-medium) var(--animation-easing);
    padding: var(--tab-button-padding-vertical) var(--tab-button-padding-horizontal);
    color: var(--color-tab-text);
    background-color: var(--color-tab-background);
    border: var(--tab-button-border-width) solid var(--color-tab-border);
    border-radius: calc(var(--small-multiplier) * var(--button-border-radius));
    font-weight: var(--button-primary-font-weight);
    text-transform: var(--button-primary-text-transform);
    letter-spacing: var(--button-letter-spacing);
  }

  .tab.active .tab__button {
    background-color: var(--color-selected-tab-background);
    color: var(--color-selected-tab-text);
    border-color: var(--color-selected-tab-border);
  }
/* END_BLOCK:_tab */

/* START_BLOCK:_toggle-cross-sell (INDEX:135) */
.toggle-cross-sell {
    display: block;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .toggle-cross-sell[data-visual-preview-mode] {
    width: 400px;
  }

  .product-form__form .toggle-cross-sell:not(:first-of-type) {
    display: none;
  }

  .toggle-cross-sell__content {
    margin-bottom: var(--margin-sm);
  }

  .toggle-cross-sell__description p {
    margin: 0;
    line-height: normal;
    font-size: var(--font-body--size);
  }

  .toggle-cross-sell__products {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    width: 100%;
  }

  .toggle-cross-sell__product {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* min-height: 50px; */
    gap: var(--gap-md);
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--card-border-radius);
    padding: var(--padding-xs);
    color: var(--color-variant-text);
    background-color: var(--color-variant-background);
    border: var(--variant-button-border-width) solid var(--color-variant-border);
  }

  .toggle-cross-sell__product-image img {
    display: block;
    min-width: 55px;
    width: 55px;
    border-radius: calc(var(--card-border-radius) - var(--margin-sm));
  }

  .toggle-cross-sell__product-image--wide img {
    object-fit: cover;
    min-height: 100%;
    border-radius: 0;
  }

  .toggle-cross-sell__product-container {
    display: flex;
    flex-direction: row;
    cursor: auto;
    gap: var(--gap-sm);
  }

  .toggle-cross-sell__product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap-sm);
  }

  .toggle-cross-sell__product-content--no-image {
    margin-left: var(--margin-sm);
  }

  .toggle-cross-sell__product-header {
    display: flex;
    gap: var(--gap-xs);
    flex-wrap: wrap;
    flex-direction: column;
  }

  .toggle-cross-sell__product-title {
    margin: 0;
    font-size: var(--font-body--size);
    font-weight: 500;
    text-decoration: none;
    color: inherit;
  }

  .toggle-cross-sell__product-price-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    font-size: var(--font-body--size-small);
  }

  .toggle-cross-sell__product .checkbox,
  .toggle-cross-sell__product .button {
    margin-right: var(--margin-sm);
  }

  .toggle-cross-sell__text-add,
  .toggle-cross-sell__text-added,
  .toggle-cross-sell__text-remove {
    display: none;
  }

  .toggle-cross-sell__product .button.button--secondary .toggle-cross-sell__text-add {
    display: block;
  }

  .toggle-cross-sell__product .button.button--active:not(:hover) .toggle-cross-sell__text-added {
    display: block;
  }

  .toggle-cross-sell__product .button.button--active:hover .toggle-cross-sell__text-remove {
    display: block;
  }
/* END_BLOCK:_toggle-cross-sell */

/* START_BLOCK:accordions (INDEX:136) */
.accordions {
    width: 100%;
  }

  shopify-visual-preview-block-list .accordions[data-visual-preview-mode] {
    width: 450px;
  }

  .accordion-block {
    flex: 1;
    width: 100%;
  }

  .accordions--dividers .accordion-block:not(:last-child) .accordion {
    border-bottom: var(--separator-border-thickness) solid var(--color-border);
  }

  .accordions--dividers .accordion .details-content {
    padding-block-end: var(--padding-sm);
  }

  .accordions--caret .accordion__icons-add,
  .accordions--add .icon--keyboard_arrow_down {
    display: none;
  }
/* END_BLOCK:accordions */

/* START_BLOCK:badges (INDEX:142) */
.badges {
    justify-content: var(--alignment-mobile);
  }

  @media (width > 750px) {
    .badges {
      justify-content: var(--alignment);
    }
  }
/* END_BLOCK:badges */

/* START_BLOCK:before-after (INDEX:143) */
.before-after-block {
    width: var(--width-mobile);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    position: relative;
  }

  .before-after-block__container {
    position: relative;
    width: 100%;
    aspect-ratio: var(--ratio);
    overflow: hidden;
    border-radius: var(--card-border-radius);
  }

  .before-after-block__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .before-after-block__image--before {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
  }

  .before-after-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .before-after-block__slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: transparent;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .before-after-block__slider-line {
    width: 3px;
    height: 100%;
    background-color: var(--color-background);
  }

  .before-after-block__slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: transform 0.1s ease-out;
    border: var(--button-secondary-border-width) solid var(--color-secondary-button-border);
  }

  .before-after-block__slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
  }

  .before-after-block__slider-icon {
    width: 16px;
    height: 16px;
    color: var(--color-text);
  }

  @media (width > 750px) {
    .before-after-block__slider-handle {
      width: 48px;
      height: 48px;
    }

    .before-after-block__slider-icon {
      width: 20px;
      height: 20px;
    }
  }

  .before-after-block__label {
    position: absolute;
    top: 1rem;
    pointer-events: none;
  }

  .before-after-block__label--before {
    left: 1rem;
  }

  .before-after-block__label--after {
    right: 1rem;
  }

  .before-after-block__label.badge--custom {
    background-color: var(--badge-custom-background);
    color: var(--badge-custom-text);
    border: var(--badge-primary-border-width) solid var(--badge-custom-border);
  }

  @media (width > 750px) {
    .before-after-block {
      width: var(--width-desktop);
    }
  }

  shopify-visual-preview-block-list .before-after-block[data-visual-preview-mode] {
    width: 100%;
    max-width: 600px;
  }
/* END_BLOCK:before-after */

/* START_BLOCK:button (INDEX:144) */
.button-block {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .button-block--full-width {
    width: 100%;
  }
/* END_BLOCK:button */

/* START_BLOCK:collection-featured (INDEX:145) */
.block-collection-featured {
    width: 100%;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .block-collection-featured .splide__arrow {
    display: none !important;
  }

  .block-collection-featured__inner {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .block-collection-featured__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: var(--gap-md);
  }

  @media (width > 750px) {
    .block-collection-featured__grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_BLOCK:collection-featured */

/* START_BLOCK:contact-form (INDEX:146) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    width: 100%;
  }

  shopify-visual-preview-block-list .contact-form[data-visual-preview-mode] {
    max-width: 500px;
  }
/* END_BLOCK:contact-form */

/* START_BLOCK:copyright (INDEX:147) */
.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: var(--alignment-mobile);
  }

  @media (width > 750px) {
    .footer-copyright {
      justify-content: var(--alignment);
    }
  }

  .footer-copyright__text,
  .footer-copyright__text > a {
    color: var(--color-foreground);
    text-decoration: none;
    font-size: var(--font-body--size-small);
  }

  .footer-copyright__text > a {
    transition: var(--animation-link-hover);

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }
/* END_BLOCK:copyright */

/* START_BLOCK:countdown (INDEX:148) */
.countdown {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    padding: var(--padding-md);
  }

  .countdown:not(.card) {
    padding: 0;
    background-color: inherit;
    color: inherit;
  }

  shopify-visual-preview-block-list .countdown[data-visual-preview-mode] {
    width: 300px;
  }

  date-counter {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-sm);
    margin: 0;
  }

  .countdown__timer {
    display: flex;
    gap: var(--gap-sm);
    width: 100%;
    justify-content: center;
  }

  .countdown__timer-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(-1 * var(--gap-sm) / 2 - 1px);
    top: calc(50%);
    transform: translateY(-50%);
    width: 1.5px;
    border-radius: 3px;
    height: 60%;
    background-color: var(--color-foreground);
    opacity: 0.2;
  }

  .countdown__timer--background .countdown__timer-card:not(:last-child)::after,
  .countdown__timer--border .countdown__timer-card:not(:last-child)::after {
    display: none;
  }

  .countdown__timer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    position: relative;
  }

  .countdown__timer-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--padding-md) var(--padding-xxs);
    height: calc(var(--countdown-timer-font-size) + var(--padding-xxs));
    border-radius: 3px;
    line-height: 1;
    font-weight: var(--countdown-timer-font-weight);
    font-size: var(--countdown-timer-font-size);
  }

  .countdown__timer--background .countdown__timer-value {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: var(--padding-sm);
    margin-bottom: var(--margin-xs);
  }

  .countdown__timer--border .countdown__timer-value {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    padding: var(--padding-sm);
    margin-bottom: var(--margin-xs);
  }

  .countdown__timer-label {
    font-size: 10px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
  }

  .countdown__timer-ended p {
    font-weight: 500;
  }
/* END_BLOCK:countdown */

/* START_BLOCK:cross-sell (INDEX:149) */
cross-sell-component {
    display: block;
    container-type: inline-size;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    width: 100%;
  }

  shopify-visual-preview-block-list cross-sell-component.cross-sell--row[data-visual-preview-mode] {
    width: 400px;
  }

  shopify-visual-preview-block-list cross-sell-component.cross-sell--column[data-visual-preview-mode] {
    width: 200px;
  }

  .cross-sell {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: var(--padding-sm);
    grid-template-areas: 'image content content';
    padding: var(--padding-sm);
    border: var(--container-border-thickness) solid var(--color-border);
  }

  .cart__footer .cross-sell {
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
  }

  .cross-sell--column .cross-sell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .cross-sell__content,
    .cross-sell__actions,
    .cross-sell__heading {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
    }

    .cross-sell__content,
    .cross-sell__actions,
    .cross-sell__form,
    .cross-sell__form .button {
      min-width: 100%;
    }
  }

  .cross-sell--no-image {
    grid-template-areas: 'content content content';
  }

  .cross-sell__image {
    width: 100%;
    grid-area: image;
    max-width: var(--image-width);
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: calc(var(--card-border-radius) - var(--padding-sm));
  }

  .cross-sell__content {
    grid-area: content;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: var(--padding-xs);
  }

  .cross-sell__heading {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--padding-xs);
    /* flex-wrap: wrap; */
  }

  .cross-sell__heading .prices {
    font-size: var(--font-body--size-small);
  }

  .cross-sell__title-and-description {
    display: flex;
    flex-direction: column;
  }

  .cross-sell__title {
    line-height: normal;
    font-weight: 600;
    font-size: var(--font-body--size);
    margin: 0;
  }

  .cross-sell__description p {
    margin: 0;
    /* line-height: normal; */
    font-size: var(--font-body--size-small);
  }

  .cross-sell__actions {
    display: flex;
    gap: var(--padding-xs);
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }

  .cross-sell__selects {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    flex: 1;
    gap: var(--gap-xs);
  }

  .cross-sell__select-label {
    font-size: var(--font-body--size-small);
    margin-bottom: var(--padding-xs);
    line-height: normal;
  }

  .cross-sell__select {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* .cross-sell__select:not(.hidden):not(:last-child) {
    margin-right: var(--padding-sm);
  } */

  @container (width < 350px) {
    .cross-sell--row .cross-sell {
      gap: var(--gap-sm);
    }

    .cross-sell__actions .button {
      min-width: 60px;
      padding: calc(var(--button-padding-vertical) / 2) calc(var(--button-padding-horizontal) * var(--small-multiplier) / 2);
    }

    .cross-sell__image {
      max-width: 65px;
    }
  }
/* END_BLOCK:cross-sell */

/* START_BLOCK:custom-code (INDEX:150) */
.custom-code-block {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
/* END_BLOCK:custom-code */

/* START_BLOCK:delivery-estimation (INDEX:151) */
.delivery-estimation {
    display: block;
    font-size: var(--font-body--size);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .delivery-estimation[data-visual-preview-mode] {
    width: 300px;
  }

  .delivery-estimation__content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    justify-content: var(--alignment-mobile);

    .icon {
      font-size: 18px !important;
      width: 18px !important;
      height: 18px !important;
      margin-right: var(--margin-xs);
    }
  }

  @media (width > 750px) {
    .delivery-estimation__content {
      justify-content: var(--alignment);
    }
  }
/* END_BLOCK:delivery-estimation */

/* START_BLOCK:filters-and-sort (INDEX:152) */
.filter-and-sort--loading .dropdown-toggle,
  .filter-and-sort--loading .dropdown-content > * {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .filter-and-sort__inline,
  .filter-and-sort__sidebar {
    display: none;
  }

  .filter-and-sort__sort-only {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  @media (width > 750px) {
    .filter-and-sort:not(.filter-and-sort--menu) .filter-and-sort__mobile {
      display: none;
    }

    .filter-and-sort--inline .filter-and-sort__inline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--gap-sm);
    }

    .filter-and-sort--sidebar .filter-and-sort__sidebar {
      display: block;
    }

    .filter-and-sort--sidebar.filter-and-sort--sticky .filter-and-sort__sidebar {
      height: fit-content;
      position: sticky;
      top: calc(var(--header-height, 0px) + var(--padding-md));
    }
  }
/* END_BLOCK:filters-and-sort */

/* START_BLOCK:group (INDEX:153) */
.group {
    gap: var(--gap-mobile);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: var(--width-mobile);
  }

  .group.card {
    padding: var(--padding-vertical) var(--padding-horizontal);
  }

  shopify-visual-preview-block-list .group[data-visual-preview-mode] {
    width: 100%;
    max-width: 450px;
  }

  .group--flex {
    display: flex;
    flex-direction: var(--direction-mobile);
    flex-wrap: var(--wrap-mobile);
    justify-content: var(--justify-mobile);
    align-items: var(--align_items-mobile);
  }

  .group--grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    grid-template-rows: auto;
  }

  @media (width > 750px) {
    .group {
      gap: var(--gap);
      width: var(--width);
    }

    .group--flex {
      flex-direction: var(--direction);
      flex-wrap: var(--wrap);
      justify-content: var(--justify);
      align-items: var(--align_items);
    }

    .group--grid {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }
  }
/* END_BLOCK:group */

/* START_BLOCK:icon-with-text (INDEX:154) */
.icon-with-text {
    display: flex;
    gap: var(--gap-mobile);
    overflow: hidden;
    width: 100%;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .icon-with-text .text-block {
    margin-top: 0;
    margin-bottom: 0;
  }

  .icon-with-text--row-mobile {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .icon-with-text--column-mobile {
    flex-direction: column;
    align-items: center;
    justify-content: center;

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

  shopify-visual-preview-block-list .icon-with-text[data-visual-preview-mode] {
    width: 100%;
    max-width: 350px;
  }

  .text-block.paragraph p {
    font-weight: var(--font-weight);
  }

  .text-block.paragraph a {
    color: inherit;
  }

  @media (width > 750px) {
    .icon-with-text {
      gap: var(--gap);
    }

    .icon-with-text--row-desktop {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;

      .text-block.paragraph p {
        text-align: left;
      }
    }

    .icon-with-text--column-desktop {
      flex-direction: column;
      align-items: center;
      justify-content: center;

      .text-block.paragraph p {
        text-align: center;
      }
    }
  }
/* END_BLOCK:icon-with-text */

/* START_BLOCK:image-card (INDEX:156) */
.image-card {
    position: relative;
    overflow: hidden;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    text-decoration: none;
    color: var(--color-foreground);
    width: 100%;
    height: 100%;
    display: block;

    &.card {
      padding: 0;
    }
  }

  shopify-visual-preview-block-list .image-card[data-visual-preview-mode] {
    width: 350px;
  }

  .image-card__image-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color);
    opacity: calc(var(--opacity) / 100);
    z-index: 1;
  }

  .image-card__image {
    position: absolute;
    width: 100%;
    height: 100%;

    img,
    .placeholder-image {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center center;
      border-radius: 0;
      overflow: hidden;
      position: relative;
    }
  }

  .image-card__content-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: var(--card-padding);
    height: 100%;

    .image-card__content {
      width: 100%;
      min-height: var(--image-height);
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: var(--gap-xxs);
      justify-content: var(--justify);
      align-items: var(--align_items);
    }
  }

  @media (width > 750px) {
    .image-card__content {
      padding: var(--padding-vertical) var(--padding-horizontal);
    }
  }
/* END_BLOCK:image-card */

/* START_BLOCK:image (INDEX:157) */
.image-block {
    width: var(--width-mobile);

    @media (width > 750px) {
      width: var(--width-desktop);
    }
  }

  .image-block__image,
  .placeholder-image {
    border-radius: var(--card-border-radius);
  }

  .image-block--height-fill .image-block__image {
    height: 100%;
  }

  .image-block__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
    width: 100%;
  }
/* END_BLOCK:image */

/* START_BLOCK:information-slider (INDEX:158) */
.slider-block {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: 100%;
  }

  shopify-visual-preview-block-list .slider-block[data-visual-preview-mode] {
    width: 400px;
  }

  .slider-block--with-pagination {
    padding-bottom: var(--margin-lg);

    &.slider-block--with-pagination-on-left {
      padding-bottom: 0;

      .splide__pagination {
        right: 0;
        left: auto;
        bottom: 50%;
        transform: translateY(50%);
        align-items: center;
        padding: 0;
      }

      .splide__pagination li {
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
  }
/* END_BLOCK:information-slider */

/* START_BLOCK:logo (INDEX:159) */
.block__logo {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }
/* END_BLOCK:logo */

/* START_BLOCK:marquee (INDEX:160) */
.marquee {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    width: 100%;
  }

  /* Quand la barre est un enfant direct d'une section qui a page-width, on lui fait prendre toute la largeur de la page */
  .page-width > .marquee {
    margin-left: calc(-1 * var(--page-margin-desktop));
    width: calc(100% + 2 * var(--page-margin-desktop));
  }

  marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
  }

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

  .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_BLOCK:marquee */

/* START_BLOCK:menu (INDEX:161) */
.menu-block {
    display: flex;
    justify-content: var(--alignment-mobile);
    margin: var(--margin-top) 0 var(--margin-bottom) 0;
  }

  @media (width > 750px) {
    .menu-block {
      justify-content: var(--alignment);
    }
  }

  .menu-block__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .menu-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: var(--menu-direction);
    gap: var(--gap-md);
  }

  .menu-block__item {
    margin: 0;
  }

  .menu-block__link {
    text-decoration: none;
    color: var(--color-foreground);
    font-size: var(--font-body--size);
    font-weight: var(--font-body--weight);
    transition: var(--animation-link-hover);

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }

  .menu-block__link--underlined {
    text-decoration: underline;
  }
/* END_BLOCK:menu */

/* START_BLOCK:newsletter-signup (INDEX:162) */
shopify-visual-preview-block-list .newsletter-signup[data-visual-preview-mode] {
    width: 300px;
    max-width: 100%;
  }

  .newsletter-signup {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    width: 100%;
  }

  .newsletter-signup__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .newsletter-signup__form-content {
    display: flex;
    gap: var(--gap-xs);
    width: 100%;
  }
/* END_BLOCK:newsletter-signup */

/* START_BLOCK:payment-methods (INDEX:163) */
.payment-methods {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    margin: var(--margin-top) 0 var(--margin-bottom) 0;
    width: 100%;
    justify-content: var(--alignment-mobile);
  }

  shopify-visual-preview-block-list .payment-methods[data-visual-preview-mode] {
    width: max-content;
  }

  @media (width > 750px) {
    .payment-methods {
      justify-content: var(--alignment);
    }
  }

  .payment-methods svg {
    width: var(--icon-size);
    height: auto;
  }
/* END_BLOCK:payment-methods */

/* START_BLOCK:powered-by-fullstack (INDEX:165) */
.powered-by-fullstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: var(--alignment-mobile);
  }

  @media (width > 750px) {
    .powered-by-fullstack {
      justify-content: var(--alignment);
    }
  }

  .powered-by-fullstack-minimal {
    color: var(--color-foreground);
    font-size: var(--font-body--size);
    text-decoration: underline;
    transition: var(--animation-link-hover);

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }

  .powered-by-fullstack-badge {
    border: 1px solid lightgray;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
    margin: 2px;
    width: 120px;
  }

  .powered-by-fullstack-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.5));
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
  }

  .powered-by-fullstack-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

  .powered-by-fullstack-badge:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(150%);
  }
/* END_BLOCK:powered-by-fullstack */

/* START_BLOCK:product-inventory (INDEX:167) */
.product-inventory {
    display: block;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .product-inventory[data-visual-preview-mode] {
    width: 150px;
  }

  .product-inventory__status {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    font-size: var(--font-body--size);
  }

  .product-inventory__status--left {
    justify-content: flex-start;
  }

  .product-inventory__status--right {
    justify-content: flex-end;
  }

  .product-inventory__status--center {
    justify-content: center;
  }

  .product-inventory__icon,
  .product-inventory__icon svg {
    width: 15px;
    height: 15px;
  }

  .product-inventory__icon-low {
    color: orange;
  }

  .product-inventory__icon-in_stock {
    color: green;
  }

  .product-inventory__icon-out_of_stock {
    color: red;
  }

  .product-inventory__icon circle:first-of-type {
    opacity: 0.3;
  }
/* END_BLOCK:product-inventory */

/* START_BLOCK:product-mini-card (INDEX:168) */
.product-mini-card {
    display: flex;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-foreground);
    font-size: var(--font-body--size);
    transition: transform 0.2s ease-in-out;
    padding: var(--padding-xs);
  }

  .product-mini-card--column {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
    max-width: 150px;

    .product-mini-card__content {
      text-align: center;

      .price-container {
        text-align: center;
        justify-content: center;
      }
    }
  }

  .product-mini-card--row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
  }

  .this-pack-contains_product-list .product-mini-card {
    min-width: max-content;
  }

  a.product-mini-card:hover {
    transform: translateY(-2px);
  }

  shopify-visual-preview-block-list .product-mini-card[data-visual-preview-mode] {
    width: 300px;
  }

  .product-mini-card__image {
    border-radius: calc(var(--card-border-radius) - var(--padding-xs));
    object-fit: cover;
    height: var(--height);
    width: var(--width);
  }

  .product-mini-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    padding: 0 var(--padding-xs);
  }

  .product-mini-card__title {
    font-weight: 500;
  }
/* END_BLOCK:product-mini-card */

/* START_BLOCK:product-price (INDEX:169) */
/* Cette règle sert à éviter un shift quand on change de variante et que le badge de réduction n'est pas présent */
  product-price {
    display: flex;
    align-items: center;
    height: calc(2 * var(--padding-xxs) + var(--font-body--size-small) + var(--badge-primary-border-width) * 2);
  }
/* END_BLOCK:product-price */

/* START_BLOCK:rating-stars (INDEX:170) */
.rating-stars__link {
    text-decoration: none;
    color: inherit;
  }
/* END_BLOCK:rating-stars */

/* START_BLOCK:review (INDEX:171) */
.review {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .review[data-visual-preview-mode] {
    width: 400px;
  }
/* END_BLOCK:review */

/* START_BLOCK:reviews-badge (INDEX:172) */
.reviews-badge {
    width: fit-content;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .reviews-badge[data-visual-preview-mode] {
    max-width: 400px;
  }

  .reviews-badge a {
    text-decoration: none;
    color: inherit;
  }

  .reviews-badge_badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
    background-color: transparent;
  }

  .reviews-badge_badge--wrapped {
    border-radius: var(--badge-border-radius);
    padding: var(--padding-sm) var(--padding-md);
    background-color: var(--color-background);
    height: 40px;
  }

  .reviews-badge_stars:has(.icon) {
    height: 20px;
  }

  .reviews-badge_stars svg {
    width: 90px;
  }

  .reviews-badge_stars .icon {
    font-size: 20px !important;
    margin: 0 -4px;
    font-variation-settings:
      'FILL' 0,
      'wght' var(--icon-weight),
      'GRAD' var(--icon-grade),
      'opsz' 20;
  }

  .reviews-badge_stars .icon--star,
  .reviews-badge_stars .icon--star-filled {
    color: var(--color-stars-icons);
  }

  .reviews-badge_stars .icon--google {
    color: #fbbc05;
  }

  .reviews-badge_stars .icon--star-filled {
    font-variation-settings:
      'FILL' 1,
      'wght' var(--icon-weight),
      'GRAD' var(--icon-grade),
      'opsz' 20;
  }

  .reviews-badge_logo img,
  .reviews-badge_logo svg {
    width: 100%;
    max-height: 20px;
  }

  .reviews-badge_logo .trustpilot-logo {
    max-width: 80px;
  }

  .reviews-badge_stars svg,
  .reviews-badge_logo svg {
    display: flex;
  }

  .reviews-badge_logo .trustpilot-logo {
    margin-top: -5px;
  }

  .reviews-badge_text-1,
  .reviews-badge_text-2 {
    font-size: var(--font-body--size);
  }

  .reviews-badge_text-1 p,
  .reviews-badge_text-2 p {
    margin: 0;
  }

  @media screen and (max-width: 768px) {
    .reviews-badge_badge {
      padding: 10px 15px;
      gap: 7px;
    }

    .reviews-badge_text-1,
    .reviews-badge_text-2 {
      font-size: var(--font-body--size-small);
    }

    .reviews-badge_logo img,
    .reviews-badge_logo svg {
      width: 100%;
      max-width: 80px;
    }

    .reviews-badge_stars svg {
      width: 80px;
    }
  }

  @media screen and (max-width: 390px) {
    .reviews-badge_text-1 {
      display: none;
    }
  }
/* END_BLOCK:reviews-badge */

/* START_BLOCK:separator (INDEX:173) */
.separator-block {
    width: 100%;
  }

  shopify-visual-preview-block-list .separator-block[data-visual-preview-mode] {
    width: 150px;
  }
/* END_BLOCK:separator */

/* START_BLOCK:slider (INDEX:174) */
.slider-block {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    overflow: hidden;
    width: 100%;
  }

  shopify-visual-preview-block-list .slider-block[data-visual-preview-mode] {
    width: 400px;
  }

  .slider-block--with-pagination {
    padding-bottom: var(--margin-lg);
  }
/* END_BLOCK:slider */

/* START_BLOCK:social-icons (INDEX:175) */
.social-icons {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: flex;
    justify-content: var(--alignment-mobile);
    gap: var(--gap-md);
    align-items: center;
    width: 100%;
  }

  @media (width > 750px) {
    .social-icons {
      justify-content: var(--alignment);
    }
  }

  shopify-visual-preview-block-list .social-icons[data-visual-preview-mode] {
    width: max-content;
  }

  .social-icon__icon {
    width: var(--icon-size);
    height: var(--icon-size);
    fill: var(--icon-color);
    transition: var(--animation-link-hover);
  }

  .social-icon__icon:hover {
    opacity: var(--opacity-link-hover);
  }
/* END_BLOCK:social-icons */

/* START_BLOCK:stories (INDEX:176) */
.stories {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: block;
  }

  .stories__container {
    display: flex;
    flex-direction: row;
    justify-content: var(--alignment-mobile);
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 6px;
  }

  @media (width > 750px) {
    .stories__container {
      justify-content: var(--alignment);
    }
  }

  .stories__modal {
    padding: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .stories__modal:focus-visible,
  .stories__modal:focus {
    outline: none;
  }

  .stories__modal::backdrop {
    transition: backdrop-filter var(--animation-speed-medium) var(--animation-easing);
    -webkit-backdrop-filter: brightness(1);
    backdrop-filter: brightness(1);
    background: rgba(var(--color-shadow));
  }

  .stories__modal[open]::backdrop {
    animation: backdropFilter var(--animation-speed-medium) var(--animation-easing) forwards;
    transition: opacity var(--animation-speed-medium) var(--animation-easing);
  }

  .stories__modal[open] {
    display: flex;
    animation: modalSlideInTop var(--animation-speed-medium) var(--animation-easing) forwards;
  }

  .stories__modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0000004d;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: 1em;
    pointer-events: all;
    backdrop-filter: blur(6.5px);
    z-index: 40;
    position: absolute;
    top: 2rem;
    right: 1rem;

    .icon {
      color: var(--color-background);
    }
  }

  @media (width <= 750px) {
    .stories__modal {
      padding: 40px 20px 0;
    }
  }

  .stories__slider {
    margin: 0 calc(40px + 2rem);
    max-height: 90vh;
    aspect-ratio: 3 / 5;

    & > .splide__track > .splide__list > .splide__slide {
      overflow: hidden;
    }

    & > .splide__track {
      overflow: hidden;
      height: 100%;
      border-radius: var(--card-border-radius);
    }

    & .stories__slider-list > .splide__slide:not(.is-active) {
      overflow: hidden;
    }

    & > .splide__arrows > .splide__arrow--prev {
      left: calc(-40px - 1rem);
    }

    & > .splide__arrows > .splide__arrow--next {
      right: calc(-40px - 1rem);
    }

    .splide__arrow:disabled {
      opacity: 0.5;
    }
  }

  @media (width <= 750px) {
    .stories__slider {
      margin: 0;
    }
  }
/* END_BLOCK:stories */

/* START_BLOCK:tabs (INDEX:177) */
.tabs {
    width: 100%;
  }

  shopify-visual-preview-block-list .tabs[data-visual-preview-mode] {
    width: 400px;
  }

  .tabs__navigation {
    display: flex;
    justify-content: var(--alignment-mobile);
    max-width: 100%;
  }

  @media (width > 750px) {
    .tabs__navigation {
      justify-content: var(--alignment);
    }
  }

  .tabs__navigation-inner {
    display: flex;
    gap: var(--gap-sm);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tabs__panel {
    margin-top: var(--margin-md);
    width: 100%;
  }
/* END_BLOCK:tabs */

/* START_BLOCK:text (INDEX:178) */
.text-block {
    text-align: var(--text-align-mobile);
    align-content: center;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  @media (width > 750px) {
    .text-block {
      text-align: var(--text-align);
    }
  }

  shopify-visual-preview-block-list .text-block[data-visual-preview-mode] {
    max-width: 400px;
  }

  .text-block.paragraph > *,
  .see-more__content > * {
    font-weight: var(--font-weight);
    font-size: var(--font-size);
  }

  .text-block a {
    color: inherit;
  }

  see-more-component {
    display: block;
    margin-block: 0 !important;
  }

  .see-more__content {
    position: relative;
  }

  .see-more__content > * {
    margin-block: var(--margin-md) 0;
  }

  .see-more__content {
    /* Solution principale avec mask CSS */
    mask: linear-gradient(to bottom, black calc(100% - 40px), transparent 100%);
    -webkit-mask: linear-gradient(to bottom, black calc(100% - 40px), transparent 100%);
    transition:
      mask 0.3s ease,
      -webkit-mask 0.3s ease;
  }

  /* Fallback pour les navigateurs qui ne supportent pas mask */
  @supports not (mask: linear-gradient(black, transparent)) {
    .see-more__content::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40px;
      background: linear-gradient(transparent, color-mix(in srgb, var(--color-background) 90%, transparent));
      opacity: 1;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .see-more__content--expanded::after,
    .see-more__content--no-overflow::after {
      opacity: 0;
    }
  }

  .see-more__content--expanded,
  .see-more__content--no-overflow {
    mask: none;
    -webkit-mask: none;
  }

  .see-more__toggle {
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.25rem 0;
    text-decoration: underline;
    transition: var(--animation-link-hover);
  }

  .see-more__toggle:hover {
    opacity: var(--opacity-link-hover);
  }

  .see-more__toggle-text {
    display: inline-block;
    text-decoration: underline;
  }

  .text-block--truncated {
    display: -webkit-box;
    -webkit-line-clamp: var(--truncate-length);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
/* END_BLOCK:text */

/* START_BLOCK:this-pack-contains (INDEX:179) */
.this-pack-contains {
    display: flex;
    flex-direction: column;
    font-size: var(--font-body--size);
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  shopify-visual-preview-block-list .this-pack-contains[data-visual-preview-mode] {
    width: 450px;
  }

  .this-pack-contains__title {
    font-weight: 500;
  }

  .this-pack-contains_description {
    margin-top: var(--margin-xs);
  }

  .this-pack-contains_product-list {
    display: flex;
    gap: var(--gap-sm);
    width: 100%;
    overflow-y: auto;
    padding: var(--padding-sm) 0;
  }
/* END_BLOCK:this-pack-contains */

/* START_BLOCK:video (INDEX:180) */
deferred-media {
    width: var(--size-style-width-mobile, var(--size-style-width));

    @media screen and (width >750px) {
      width: var(--size-style-width);
    }
  }

  .video-placeholder-wrapper {
    position: relative;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    width: var(--size-style-width-mobile, var(--size-style-width));
    aspect-ratio: var(--ratio);

    @media screen and (width >750px) {
      width: var(--size-style-width);
    }
  }

  .video-placeholder-wrapper__poster-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
    transition: var(--animation-link-hover);

    .icon--play_circle {
      font-size: 60px !important;
      color: var(--color-primary-button-text);
    }
  }
/* END_BLOCK:video */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:accordion (INDEX:181) */
accordion-row:has(.accordion__heading-title:empty),
  accordion-row:has(.accordion__content:empty) {
    display: none;
  }

  .accordion__header {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    transition: margin 150ms ease-out;
    padding: var(--margin-sm) 0;

    /* Masquer la flèche par défaut sur tous les navigateurs */
    &::-webkit-details-marker {
      display: none;
    }

    &::marker {
      display: none;
    }

    /* Fix spécifique pour iOS Safari */
    &::-webkit-details-marker,
    &::before {
      display: none !important;
    }
  }

  .accordion__header .icon,
  .accordion__header .accordion__icons-add {
    margin-inline-start: auto;
    transition: transform var(--animation-speed-fast) var(--animation-easing);
  }

  .accordion[open] .accordion__header .icon--keyboard_arrow_down {
    transform: rotate(180deg);
  }

  .accordion[open] .accordion__header .icon--add {
    transform: rotate(90deg);
  }

  .accordion:not([open]) .accordion__header .icon--remove,
  .accordion[open] .accordion__header .icon--add {
    display: none;
  }

  .accordion[open] .accordion__header .icon--remove,
  .accordion:not([open]) .accordion__header .icon--add {
    display: block;
  }

  .accordion__heading {
    font-size: var(--font-body--size-emphasized);
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .accordion__heading .icon {
    font-size: 20px !important;
  }

  .accordion__content {
    padding: 0 0 var(--margin-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }
/* END_SNIPPET:accordion */

/* START_SNIPPET:add-to-wishlist-button (INDEX:182) */
.product-quantity-selector-block[data-visual-preview-mode] {
    width: 100px;
  }

  .add-to-wishlist-button__icon {
    font-variation-settings:
      'FILL' 0,
      'wght' var(--icon-weight),
      'GRAD' var(--icon-grade),
      'opsz' 24;
  }

  .add-to-wishlist-button__icon--filled {
    font-variation-settings:
      'FILL' 1,
      'wght' var(--icon-weight),
      'GRAD' var(--icon-grade),
      'opsz' 24;
  }
/* END_SNIPPET:add-to-wishlist-button */

/* START_SNIPPET:article-card (INDEX:183) */
.article-card {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    color: var(--color-foreground);
  }

  .article-card[data-visual-preview-mode] {
    max-width: 280px;
  }

  @media (width > 750px) {
    .article-card:hover {
      transform: translateY(-2px);
    }
  }
/* END_SNIPPET:article-card */

/* START_SNIPPET:cart-icon (INDEX:185) */
.header__icon-cart {
    position: relative;
    cursor: pointer;
  }
/* END_SNIPPET:cart-icon */

/* START_SNIPPET:checkbox (INDEX:186) */
.checkbox {
    z-index: 0;
    position: relative;
    display: block;
    line-height: var(--checkbox-size);
  }

  .checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -8px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition:
      opacity 0.3s,
      transform 0.2s;
  }

  .checkbox > span {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    font-size: var(--font-body--size-emphasized);
  }

  .checkbox__additionnal-label-content {
    margin-right: var(--margin-sm);
  }

  .checkbox > span::before {
    content: '';
    display: inline-block;
    box-sizing: border-box;
    margin-right: var(--margin-sm);
    border: var(--inputs-border-width) solid var(--color-input-text);
    border-radius: var(--checkbox-border-radius);
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    vertical-align: top;
    transition:
      border-color 0.2s,
      background-color 0.2s;
    background-color: var(--color-input-background);
  }

  .checkbox > span:empty::before {
    margin-right: 0;
  }

  .checkbox > span::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 1px;
    width: 0.6rem;
    height: 0.3rem;
    border: solid 1.5px transparent;
    border-right: none;
    border-top: none;
    transform: translate(0.22rem, 0.32rem) rotate(-45deg);
  }

  .checkbox > input:checked + span::before,
  .checkbox > input:indeterminate + span::before {
    border-color: var(--color-input-text);
    background-color: var(--color-input-text);
  }

  .checkbox > input:checked + span::after,
  .checkbox > input:indeterminate + span::after {
    border-color: var(--color-input-background);
  }

  .checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(0.25rem, 0.1875rem);
  }

  .checkbox > input:focus {
    opacity: 0.12;
  }

  .checkbox > input:disabled {
    opacity: 0;
  }

  .checkbox > input:disabled + span {
    color: var(--color-input-text);
    cursor: initial;
    opacity: 0.5;
  }

  .checkbox > input:disabled + span::before {
    border-color: currentColor;
    cursor: not-allowed;
  }

  .checkbox > input:checked:disabled + span::before,
  .checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: currentColor;
  }

  .checkbox > input:checked:disabled + span::after {
    border-color: var(--color-input-background);
    cursor: not-allowed;
  }
/* END_SNIPPET:checkbox */

/* START_SNIPPET:collection-card (INDEX:187) */
.collection-card {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    color: var(--color-foreground);
  }

  .collection-card[data-visual-preview-mode] {
    max-width: 280px;
  }

  @media (width > 750px) {
    .collection-card:hover {
      transform: translateY(-2px);
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:dropdown-localization (INDEX:190) */
dropdown-component .dropdown-localization__toggle {
    gap: 3px;
    font-size: var(--font-body--size-emphasized);

    .icon-flag {
      width: 14px;
      height: 14px;
      clip-path: circle(50%);
      background-position: center;
      background-size: cover;
      margin-inline-end: 4px;
      position: relative;
    }
  }

  dropdown-component .dropdown-localization-content {
    min-width: 240px;
    padding: var(--padding-sm);
  }

  @media (width <= 1000px) {
    dropdown-component .dropdown-localization__toggle {
      width: 100%;
      padding: var(--padding-sm) var(--padding-xs);
    }

    dropdown-component .dropdown-localization-content {
      position: fixed;
      top: auto;
      bottom: 0;
      left: 0;
      width: 100%;
      min-width: 100%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
  }
/* END_SNIPPET:dropdown-localization */

/* START_SNIPPET:filter-list (INDEX:192) */
.filter-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .filter-list__swatch {
    background: var(--swatch-background);
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
  }
/* END_SNIPPET:filter-list */

/* START_SNIPPET:filter-price-range (INDEX:193) */
.filter-price-range {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }

  .filter-price-range__field {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .filter-price-range__field .textfield input {
    width: 100px;
    min-width: 100px;
  }
/* END_SNIPPET:filter-price-range */

/* START_SNIPPET:filters-inline (INDEX:194) */
.filters__container {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .filters__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--gap-sm);
  }

  .filter-dropdown-toggle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .filter-dropdown-toggle__label {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .filter-count {
    background-color: var(--color-primary-button-background);
    color: var(--color-primary-button-text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: var(--font-body--size-small);
  }

  dropdown-component .filter-dropdown-content {
    min-width: fit-content;
    padding: var(--padding-md);
  }

  .filter-clear-button {
    margin-top: var(--margin-md);
  }
/* END_SNIPPET:filters-inline */

/* START_SNIPPET:filters-modal (INDEX:195) */
.side-menu__toggle-link {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    background-color: transparent;
    color: var(--color-foreground);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  .filters-side-panel {
    overflow-y: auto;
    height: 100%;
    padding: 20px;
  }
/* END_SNIPPET:filters-modal */

/* START_SNIPPET:filters-sidebar (INDEX:196) */
.filters-sidebar__list {
    display: flex;
    flex-direction: column;
  }

  .filters-sidebar__filter-label {
    display: block;
    font-size: var(--font-body--size-emphasized);
    font-weight: 600;
    margin-bottom: var(--margin-sm);
  }
/* END_SNIPPET:filters-sidebar */

/* START_SNIPPET:header-actions (INDEX:198) */
.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: var(--header-height);
  }

  .header__actions a {
    text-decoration: none;
    color: inherit;
  }

  .header__actions .dropdown-toggle:hover {
    opacity: 1;
  }

  .header__icon {
    height: 24px;
  }

  @media (width < 1000px) {
    .header__actions .dropdown-localization,
    .header__actions .search-popup,
    .header__actions .header__icon-account {
      display: none;
    }
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-menu-desktop (INDEX:199) */
.header__menu-desktop {
    display: none;
  }

  @media (width > 1000px) {
    .header__menu-desktop {
      display: flex;
    }

    .header__menu-desktop-list {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      column-gap: 1rem;
      row-gap: 0.33rem;
      height: 100%;
    }

    .header__menu-mobile {
      display: none;
    }
  }

  .header__menu-desktop-list--uppercase .header__menu-link-text {
    text-transform: uppercase;
  }

  .header__menu-link-text {
    font-weight: var(--font-weight);
  }

  /* Sous-menus */
  .header__submenu-link--parent .icon {
    transition: transform var(--animation-speed) var(--animation-easing);
    font-size: 22px !important;
  }

  .header__submenu-accordion summary {
    transition: var(--animation-link-hover);
  }

  .header__submenu-accordion summary:hover {
    opacity: var(--opacity-link-hover);
  }

  /* Liens dans les sous-menus */
  .header__submenu-link {
    display: block;
    padding: var(--padding-xs) 0;
    font-size: var(--font-body--size);
    text-decoration: none;
    color: inherit;
  }

  .header__menu-item--dropdown .header__submenu-link {
    padding: var(--padding-xs);
    border-radius: calc(var(--inputs-border-radius) * var(--small-multiplier));
    transition: background-color var(--animation-speed) var(--animation-easing);
  }

  .header__menu-item--dropdown .header__submenu-link:hover {
    background-color: var(--color-input-border-low-opacity);
  }

  /* Accordéons dans les sous-menus */
  .header__submenu-accordion {
    width: 100%;
  }

  .header__submenu-accordion summary {
    list-style: none;
    cursor: pointer;
  }

  .header__submenu-accordion summary::-webkit-details-marker {
    display: none;
  }

  .header__submenu-link--parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__submenu-accordion[open] > summary .icon {
    transform: rotate(180deg);
  }

  .header__subsubmenu {
    padding: 0 var(--padding-sm);
  }

  /* Megamenu */
  .header__menu-item--megamenu {
    position: static;
  }

  dropdown-component .dropdown-content.header__submenu--megamenu {
    width: 100%;
    top: calc(var(--header-offset-height) - var(--separator-border-thickness));
    left: 0;
    border: 0;
    border-bottom: var(--separator-border-thickness) solid var(--color-border);
    border-radius: 0;
  }

  .header__submenu--megamenu__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--gap-md);
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: var(--padding-sm) var(--page-margin-desktop);
    max-height: 80vh;
    overflow-y: auto;
  }

  .header__submenu--megamenu__item {
    flex: 1;
  }

  .header__submenu--megamenu__item .header__submenu-link {
    font-size: var(--font-body--size);
  }

  .header__submenu--megamenu__item .header__submenu-link--parent {
    font-size: var(--font-body--size-emphasized);
    font-weight: 500;
  }

  .header__submenu-image-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-sm);
    transition: var(--animation-link-hover);

    img {
      width: 100%;
      object-fit: cover;
      border-radius: var(--card-border-radius);
      aspect-ratio: var(--image-ratio);
    }

    &:hover {
      opacity: var(--opacity-link-hover);
    }
  }

  .header__submenu-image-title {
    font-size: var(--font-body--size);
    font-weight: 500;
  }
/* END_SNIPPET:header-menu-desktop */

/* START_SNIPPET:loading-spinner (INDEX:202) */
.loading__spinner {
    position: absolute;
    z-index: 1;
    width: 18px;
    display: inline-block;
    color: black;
    left: calc(50% - 9px);
    display: none;
  }

  .is-loading {
    cursor: wait;
    position: relative;
    opacity: 0.7;
    pointer-events: none;
  }

  .is-loading span:not(.loading__spinner) {
    opacity: 0;
  }

  .is-loading .loading__spinner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    display: block;
  }

  .spinner {
    animation: rotator 1.4s linear infinite;

    .path {
      stroke-dasharray: 187;
      stroke-dashoffset: 0;
      transform-origin: center;
      animation: dash 1.4s ease-in-out infinite;
      stroke: var(--color-primary-button-text);
    }
  }

  .button--secondary .spinner .path {
    stroke: var(--color-secondary-button-text);
  }

  @keyframes rotator {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(270deg);
    }
  }

  @keyframes dash {
    0% {
      stroke-dashoffset: 187;
    }
    50% {
      stroke-dashoffset: 46.75;
      transform: rotate(135deg);
    }
    100% {
      stroke-dashoffset: 187;
      transform: rotate(450deg);
    }
  }
/* END_SNIPPET:loading-spinner */

/* START_SNIPPET:localization-form (INDEX:203) */
dropdown-localization-component {
    position: relative;
    color: var(--color-foreground);
  }

  /* Choix de pays */

  .localization-form__country-selector {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
    max-height: 20.5rem;
  }

  .localization-form__countries {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    width: 100%;
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    white-space: nowrap;
  }

  .localization-form__country {
    border-radius: calc(var(--card-border-radius) - var(--padding-xs));
    display: flex;
    align-items: center;
    padding: var(--padding-xs);
    font-size: var(--font-body--size);
    gap: 3px;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);
  }

  .localization-form__country:hover,
  .localization-form__country:focus,
  .localization-form__country--selected {
    background-color: rgb(from var(--color-foreground) r g b / 5%);
    font-weight: 500;
  }

  .localization-form__country .country {
    flex: 1;
  }

  .localization-form__country .icon--check {
    visibility: hidden;
    font-size: 18px !important;
  }

  .localization-form__country--selected .icon--check {
    visibility: visible;
  }

  .localization-form__country-currency {
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  .localization-form__country:hover .localization-form__country-currency,
  .localization-form__country--selected .localization-form__country-currency {
    opacity: 1;
    transition: opacity var(--animation-speed-fast) var(--animation-easing);
    visibility: visible;
  }

  /* Choix de langue */

  .localization-form__language-selector {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: var(--font-body--size);

    &.localization-form__language-selector--with-country {
      border-top: var(--separator-border-thickness) solid var(--color-border);
      margin-top: var(--padding-xs);
      padding: var(--padding-xs) var(--padding-xs) 0;

      .localization-form__language-select-wrapper {
        width: auto;
      }
    }

    .icon--keyboard_arrow_down {
      font-size: 22px !important;
    }
  }

  .localization-form__language-select-label {
    flex: 1;
  }

  .localization-form__language-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .localization-form__language-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 35px;
    padding: 0 var(--inputs-padding);
    padding-right: calc(var(--inputs-padding) * 2);
    border: none;
    border-radius: var(--inputs-border-radius);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    cursor: pointer;
    font-size: var(--inputs-font-size);
    font-weight: var(--font-weight);
    width: 100%;
  }

  .localization-form__language-selector--uppercase .localization-form__language-select {
    text-transform: uppercase;
  }

  .localization-form__language-select:not(:disabled):hover,
  .localization-form__language-select:not(:disabled):focus,
  .localization-form__language-select:focus-visible,
  .localization-form__language-select:focus {
    outline: none;
    margin: 0;
    box-shadow: none;
  }

  .localization-form__language-select-wrapper__icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-input-text);
    height: 20px;
  }

  .localization-form__language-select-wrapper__icon .icon {
    font-size: 20px !important;
  }

  @media (width <= 1000px) {
    .localization-form__country-currency {
      opacity: 1;
      visibility: visible;
    }
  }
/* END_SNIPPET:localization-form */

/* START_SNIPPET:pagination (INDEX:208) */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
  }

  .pagination__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pagination__item {
    text-decoration: none;
  }

  .pagination__item--current {
    cursor: default;
    pointer-events: none;
  }
/* END_SNIPPET:pagination */

/* START_SNIPPET:price (INDEX:209) */
.badge:has(.badge__savings:empty) {
    display: none;
  }
/* END_SNIPPET:price */

/* START_SNIPPET:product-badges (INDEX:210) */
.product-badges {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
  }

  .product-badges--bottom-left {
    bottom: var(--padding-sm);
    left: var(--padding-sm);
    justify-content: flex-start;
  }

  .product-badges--top-left {
    top: var(--padding-sm);
    left: var(--padding-sm);
    justify-content: flex-start;
  }

  .product-badges--top-right {
    top: var(--padding-sm);
    right: var(--padding-sm);
    justify-content: flex-end;
  }
/* END_SNIPPET:product-badges */

/* START_SNIPPET:product-card (INDEX:211) */
.product-card {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
  }

  .product-card[data-visual-preview-mode] {
    max-width: 280px;
  }

  @media (width > 750px) {
    .product-card:hover {
      transform: translateY(-2px);
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-media (INDEX:212) */
.product-media img {
    aspect-ratio: var(--ratio);
    object-fit: cover;
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:product-option-value-button (INDEX:213) */
.variant-picker__option-value input {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
  }

  .variant-picker__option-value input + label {
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: var(--variant-button-min-height);
    min-width: var(--variant-button-min-width);
    max-width: max-content;
    font-size: var(--variant-button-font-size);
    outline: 1px solid transparent;
    transition: all var(--animation-speed-medium) var(--animation-easing);
    padding: var(--variant-button-padding-vertical) var(--variant-button-padding-horizontal);
    color: var(--color-variant-text);
    background-color: var(--color-variant-background);
    border: var(--variant-button-border-width) solid var(--color-variant-border);
    border-radius: var(--inputs-border-radius);
    font-weight: var(--button-primary-font-weight);
    text-transform: var(--button-primary-text-transform);
    letter-spacing: var(--button-letter-spacing);
  }

  .variant-picker__option-value input:checked + label {
    background-color: var(--color-selected-variant-background);
    color: var(--color-selected-variant-text);
    border-color: var(--color-selected-variant-border);
  }

  .variant-picker__option-value input[aria-disabled='true'] + label {
    position: relative;
    opacity: 0.5;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--color-variant-border);
      rotate: 20deg;
    }
  }

  .variant-picker__option-value input[aria-disabled='true']:checked + label::before {
    background-color: var(--color-selected-variant-text);
  }
/* END_SNIPPET:product-option-value-button */

/* START_SNIPPET:product-section-content (INDEX:214) */
@media (width > 750px) {
    .shopify-section-product-section {
      overflow: visible;
    }
  }

  .product-section {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
  }

  .product-section__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: var(--gap-md);
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .product-section__product-info {
    display: flex;
    flex-direction: column;
    gap: var(--padding-sm);
  }

  @media (width > 750px) {
    .product-section__content {
      flex-direction: var(--image-position);
      gap: var(--gap);
    }

    .product-section__medias-container {
      overflow: hidden;
    }

    .product-section__medias {
      width: calc(100% - var(--product-info-width));
    }

    .product-section__product-info {
      max-width: calc(var(--product-info-width) - var(--gap));
      width: 100%;
    }

    .product-section__medias--sticky,
    .product-section__product-info--sticky {
      height: fit-content;
      position: sticky;
      top: calc(var(--header-height, 0px) + var(--padding-md));
      z-index: 2;
    }
  }

  @media (width <= 750px) {
    .product-section--carrousel-image-full-width {
      .product-section__content {
        padding-top: 0 !important;
      }

      .product-media-gallery-main-slider {
        width: calc(100% + 2 * (var(--page-margin-mobile)));
        margin-left: calc(var(--page-margin-mobile) * -1);
      }

      .product-media-gallery__media--rounded {
        border-radius: 0;
      }
    }
  }
/* END_SNIPPET:product-section-content */

/* START_SNIPPET:quantity-selector (INDEX:216) */
:root {
    --quantity-selector-button-width: 30px;
  }

  .quantity-selector {
    border: var(--inputs-border-width) solid var(--color-input-border);
    border-radius: var(--inputs-border-radius);
    background-color: var(--color-input-background);
    height: var(--inputs-min-height);
    overflow: hidden;
    display: flex;
    min-width: calc(var(--quantity-selector-button-width) * 3 + var(--inputs-border-width) * 2);
    width: calc(var(--quantity-selector-button-width) * 3 + var(--inputs-border-width) * 2);
  }

  .quantity-selector--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  .quantity-selector button,
  .quantity-selector input {
    appearance: textfield;
    background-color: var(--color-input-background);
    border: none;
    transition: 0.2s;
    cursor: pointer;
    min-width: var(--quantity-selector-button-width);
    height: var(--inputs-min-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    color: var(--color-input-text);
  }

  .quantity-selector--small {
    height: calc(var(--small-multiplier) * var(--inputs-min-height));
    border-radius: calc(var(--small-multiplier) * var(--inputs-border-radius));
  }

  .quantity-selector--small button,
  .quantity-selector--small input {
    height: calc(var(--small-multiplier) * var(--inputs-min-height) - 2 * var(--inputs-border-width));
    width: calc(var(--small-multiplier) * var(--inputs-min-height) - 2 * var(--inputs-border-width));
  }

  .quantity-selector button[disabled] {
    opacity: 0.3;
    pointer-events: none;
  }

  .quantity-selector button:not(:disabled):hover svg {
    transform: scale(1.1);
  }

  .quantity-selector .icon {
    pointer-events: none;
    font-size: 20px !important;
    color: var(--color-input-text);
  }

  .quantity-selector input::-webkit-inner-spin-button,
  .quantity-selector input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .quantity-selector input:focus-visible {
    outline: none;
    outline-offset: 0;
    box-shadow: none;
    z-index: 1;
  }
/* END_SNIPPET:quantity-selector */

/* START_SNIPPET:radio (INDEX:217) */
.radio {
    z-index: 0;
    position: relative;
    display: inline-block;
    line-height: 1.5;
  }

  .radio > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition:
      opacity 0.3s,
      transform 0.2s;
  }

  .radio > .radio__label {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    position: relative;
    font-size: var(--font-body--size-emphasized);
  }

  .radio > .radio__label::before {
    content: '';
    display: inline-block;
    box-sizing: border-box;
    margin: 0px 10px 0px 0;
    border: var(--inputs-border-width) solid var(--color-input-text);
    border-radius: 50%;
    width: 20px;
    min-width: 20px;
    height: 20px;
    vertical-align: top;
    transition: border-color 0.2s;
    background-color: var(--color-input-background);
  }

  .radio > .radio__label::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--color-input-text);
    transform: translate(5px, 5px) scale(0);
    transition: transform 0.2s;
  }

  .radio > input:checked + .radio__label::before {
    border-color: var(--color-input-text);
  }

  .radio > input:checked + .radio__label::after {
    transform: translate(5px, 5px) scale(1);
  }

  .radio > input:focus {
    opacity: 0.12;
  }

  .radio > input:disabled {
    opacity: 0;
  }

  .radio > input:disabled + .radio__label {
    color: var(--color-input-text);
    opacity: 0.5;
    cursor: not-allowed;
  }

  .radio > input:disabled + .radio__label::before {
    border-color: currentColor;
  }

  .radio > input:disabled + .radio__label::after {
    background-color: currentColor;
  }
/* END_SNIPPET:radio */

/* START_SNIPPET:rating-stars (INDEX:218) */
.rating {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
  }

  .rating__stars {
    height: 22px;
  }

  .rating-star {
    font-size: 22px !important;
    margin: 0 -4.5px;
    color: var(--color-stars-icons);
  }

  .rating-star--filled {
    font-variation-settings:
      'FILL' 1,
      'wght' var(--icon-weight),
      'GRAD' var(--icon-grade),
      'opsz' 24;
  }

  .rating-star--unfilled {
    font-variation-settings:
      'FILL' 0,
      'wght' var(--icon-weight),
      'GRAD' var(--icon-grade),
      'opsz' 24;
  }

  .rating__count {
    line-height: 22px;
  }
/* END_SNIPPET:rating-stars */

/* START_SNIPPET:review (INDEX:219) */
.review {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    overflow: hidden;
    width: 100%;
  }

  shopify-visual-preview-block-list shopify-visual-preview-block-list .review[data-visual-preview-mode] {
    width: 100%;
    max-width: 400px;
  }

  .review__image {
    object-fit: cover;
    width: 100%;
    overflow: auto;
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
  }

  .review__image .placeholder-svg {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
  }

  .review__title,
  .review__author-name {
    font-weight: 600;
  }

  .review__date {
    font-style: italic;
  }

  .review--2 {
    .review__author-and-date {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--gap-sm);
      width: 100%;
      margin-top: 10px;
    }
  }

  .review--3 {
    .review__image {
      aspect-ratio: var(--image-ratio);
    }

    .review__image .placeholder-svg {
      aspect-ratio: var(--image-ratio);
    }
  }

  .review--4 {
    flex-direction: row;
    align-items: center;

    .review__content {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: var(--gap-sm);
    }

    .review__image,
    .review__image .placeholder-svg {
      aspect-ratio: 1 / 1;
    }
  }

  @media (width > 750px) {
    .review--4 {
      flex-direction: row;
      align-items: center;
    }
  }

  .review--5 {
    .review__author-and-date-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--gap-sm);
      width: 100%;
      margin-bottom: 10px;

      .review__author-and-date {
        display: flex;
        flex-direction: column;
        gap: var(--gap-xs);
      }

      .review__author-profile,
      .review__author-profile svg {
        width: 50px;
        height: 50px;
        background-color: #f8f8f8;
        border-radius: calc(var(--card-border-radius) - (var(--card-padding) * 0.5));
        object-fit: cover;
      }
    }
  }
/* END_SNIPPET:review */

/* START_SNIPPET:search-popup (INDEX:221) */
.header__icon-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
    display: flex;
  }

  .dialog-modal--search {
    padding: var(--page-margin-mobile);
    flex-direction: row;
    gap: var(--gap-xs);
    align-items: center;
    width: var(--modal-width);
    overflow: hidden !important;
    max-height: var(--search-modal-max-height-mobile);

    @media (width > 750px) {
      max-height: var(--search-modal-max-height);
    }

    &[open] {
      display: flex;
      align-items: flex-start;
    }

    .dialog-modal__content {
      width: 100%;
    }

    .dialog-modal__content .search-form {
      display: flex;
      flex-direction: row;
      gap: var(--gap-xs);
      align-items: center;
      margin: 0;
    }

    .dialog-modal__close {
      position: relative;
      top: auto;
      right: auto;
    }
  }

  @media (width > 750px) {
    .dialog-modal--search {
      padding: var(--padding-md);
    }
  }
/* END_SNIPPET:search-popup */

/* START_SNIPPET:separator (INDEX:223) */
.separator {
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    display: block;
    width: var(--width);
  }

  .separator hr {
    border: none;
    border-top: var(--separator-border-thickness) solid var(--color-border, #e0e0e0);
  }
/* END_SNIPPET:separator */

/* START_SNIPPET:slider (INDEX:224) */
slider-component {
    position: relative;
  }
/* END_SNIPPET:slider */

/* START_SNIPPET:sort-inline (INDEX:225) */
.sorting-dropdown-toggle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sorting__select {
    border-radius: calc(var(--card-border-radius) - var(--padding-xs));
    display: flex;
    align-items: center;
    padding: var(--padding-xs);
    font-size: var(--font-body--size);
    gap: 3px;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);
  }

  .sorting__list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    width: 100%;
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    white-space: nowrap;
    list-style: none;
    padding: 0;
  }

  .sorting__select:hover,
  .sorting__select:focus,
  .sorting__select--selected {
    background-color: rgb(from var(--color-foreground) r g b / 5%);
    font-weight: 500;
  }
/* END_SNIPPET:sort-inline */

/* START_SNIPPET:swatch (INDEX:227) */
.swatch-input {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
  }

  .swatch-input + .swatch,
  .swatch-link {
    display: block;
    border-radius: calc(var(--swatch-border-radius) - var(--swatch-outline-offset));
    cursor: pointer;
    outline-offset: var(--swatch-outline-offset);
    margin: var(--inputs-border-width);
    width: var(--swatch-size);
    height: var(--swatch-size);
    outline: var(--inputs-border-width) solid transparent;
    transition: outline 0.1s ease-in-out;
    forced-color-adjust: none;
  }

  .swatch-input:active + .swatch,
  .swatch-input:checked + .swatch,
  .swatch-input[aria-checked='true'] + .swatch,
  .swatch-link[aria-checked='true'],
  .swatch-input:focus + .swatch,
  .swatch-input:focus-visible + .swatch {
    outline: var(--inputs-border-width) solid var(--color-input-border);
  }

  .swatch-input:hover:not([aria-checked='true']):not([checked]) + .swatch,
  .swatch-link:hover:not([aria-checked='true']) {
    outline: var(--inputs-border-width) solid var(--color-input-border-low-opacity);
  }

  .swatch span {
    pointer-events: none;
    position: relative;
    overflow: hidden;
    display: block;
    width: var(--swatch-size);
    height: var(--swatch-size);
    background: var(--swatch-background);
    background-size: cover;
    background-origin: border-box;
    border: 0.5px solid var(--color-input-border-low-opacity);
    border-radius: calc(var(--swatch-border-radius) - var(--swatch-outline-offset));
  }

  .swatch--disabled span:after {
    --crossed-line--size: 1px;
    content: '';
    position: absolute;
    bottom: calc(var(--crossed-line--size) * -0.5);
    left: 0;
    width: calc(var(--swatch-size) * 1.414);
    height: var(--crossed-line--size);
    background-color: var(--color-foreground);
    transform: rotate(-45deg);
    transform-origin: left;
  }

  .swatch-input:checked + .swatch {
    outline: var(--inputs-border-width) solid var(--color-input-border);
  }
/* END_SNIPPET:swatch */

/* START_SNIPPET:swatches (INDEX:228) */
.swatches {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 3px;
    gap: 10px;
    padding-bottom: 10px;
  }

  .swatches {
    --swatch-size: var(--swatches-size);
    --swatch-border-radius: var(--inputs-border-radius);
    --swatch-outline-offset: var(--swatches-outline-offset);
  }

  .swatches--small {
    --swatch-size: calc(var(--swatches-size) * var(--small-multiplier));
    --swatch-border-radius: calc(var(--small-multiplier) * var(--inputs-border-radius));
    --swatch-outline-offset: var(--swatches-small-outline-offset);
  }

  .swatches--big {
    --swatch-size: calc(var(--swatches-size) * var(--big-multiplier));
    --swatch-border-radius: calc(var(--inputs-border-radius) * var(--big-multiplier));
    --swatch-outline-offset: var(--swatches-big-outline-offset);
  }

  .swatches--rounded .swatch,
  .swatches--rounded .swatch-link,
  .swatches--rounded .swatch span {
    --swatch-border-radius: 100%;
  }
/* END_SNIPPET:swatches */

/* START_SNIPPET:textarea (INDEX:229) */
.textarea {
    position: relative;
  }

  .textarea textarea {
    outline: none;
    border: var(--inputs-border-width) solid var(--color-input-border);
    border-radius: var(--inputs-border-radius);
    padding: var(--inputs-padding);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    transition: 0.1s ease-out;
    height: calc(var(--inputs-min-height) * 2);
    width: 100%;
    font-size: var(--inputs-font-size);
  }

  /* On masque le placeholder par défaut, car il fait doublon avec le label */
  /* .textarea textarea::placeholder {
    opacity: 0;
  } */

  .textarea--disabled textarea {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--color-input-background);
  }

  .textarea--full-width textarea {
    width: 100%;
  }
/* END_SNIPPET:textarea */

/* START_SNIPPET:textfield (INDEX:230) */
.textfield {
    position: relative;
  }

  .textfield input {
    outline: none;
    border: var(--inputs-border-width) solid var(--color-input-border);
    border-radius: var(--inputs-border-radius);
    padding: var(--inputs-padding);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    transition: 0.1s ease-out;
    height: var(--inputs-min-height);
    min-width: var(--inputs-min-width);
  }

  /* On masque le placeholder par défaut, car il fait doublon avec le label */
  .textfield input::placeholder {
    opacity: 0;
  }

  .textfield label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--inputs-font-size);
    background: var(--color-input-background);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    margin: 0 var(--inputs-padding);
    padding: 0 2px;
    transition: 0.1s ease-out;
    transform-origin: left top;
    pointer-events: none;
  }

  .textfield input:focus + label {
    color: var(--color-input-text);
    top: 0;
    transform: translateY(-50%) scale(0.9);
    background: linear-gradient(180deg, var(--color-background) 60%, var(--color-input-background) 40%);
  }

  .textfield input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    background: linear-gradient(180deg, var(--color-background) 60%, var(--color-input-background) 40%);
  }

  .textfield--small,
  .textfield--small input {
    height: calc(var(--small-multiplier) * var(--inputs-min-height));
  }

  .textfield--small input {
    padding: 0 var(--inputs-padding);
    border-radius: calc(var(--small-multiplier) * var(--inputs-border-radius));
  }

  .textfield--disabled input {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--color-input-background);
  }

  .textfield--disabled label {
    opacity: 0.5;
    background-color: transparent;
  }

  .textfield--full-width,
  .textfield--full-width input {
    width: 100%;
  }

  .textfield--error input {
    border-color: var(--color-error);
  }

  .textfield--error label {
    color: var(--color-error);
  }
/* END_SNIPPET:textfield */

/* START_SNIPPET:video (INDEX:232) */
deferred-media {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    aspect-ratio: var(--ratio);
    position: relative;
    display: block;
  }

  .video-interaction-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .video-interaction-hint:hover {
    opacity: 1;
  }

  .deferred-media__video:empty {
    z-index: -1;
  }

  .deferred-media__video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .deferred-media__video video {
    aspect-ratio: var(--ratio);
    object-fit: cover;
  }

  .deferred-media__poster-button {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .deferred-media__poster,
  .deferred-media__poster-button {
    cursor: pointer;
  }

  .deferred-media__poster-icon,
  .deferred-media__poster-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
    transition: var(--animation-link-hover);

    .icon--play_circle,
    .icon--pause_circle {
      font-size: 60px !important;
      color: var(--color-primary-button-text);
    }
  }

  .deferred-media__poster:hover {
    .deferred-media__poster-button {
      opacity: 1;
    }

    .deferred-media__poster-icon {
      opacity: var(--opacity-link-hover);
    }
  }

  .deferred-media__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
  }

  .deferred-media__poster.deferred-media__playing {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  deferred-media img {
    height: 100%;
    transition: opacity 0.3s ease;
  }

  deferred-media iframe {
    width: 100%;
    height: 100%;
    border: none;
    aspect-ratio: var(--ratio);
  }

  deferred-media[data-media-loaded] img {
    opacity: 0;
  }
/* END_SNIPPET:video */

/* START_SNIPPET:wishlist-icon (INDEX:233) */
.header__icon-wishlist {
    position: relative;
    cursor: pointer;
    color: inherit;
  }
/* END_SNIPPET:wishlist-icon */