/** Shopify CDN: Minification failed

Line 1227:18 Unexpected "{"
Line 1227:27 Expected ":"

**/
/* START_SECTION:header-announcements (INDEX:12) */
.announcement-bar {
    border-block-end: var(--border-bottom-width) solid var(--color-border);
    text-align: center !important;
  }

  .announcement-bar__slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .announcement-bar__slides {
    display: grid;
    grid: [stack] auto / [stack] auto;
    width: calc(100% - var(--button-size) * 2);
    max-width: 680px;
    margin-inline: auto;
  }

  .announcement-bar__slides > * {
    grid-area: stack;
  }

  .announcement-bar__slide {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    content-visibility: visible;

    &[aria-hidden='true'] {
      opacity: 0;
      visibility: hidden;
    }
  }

  .announcement-bar__slider slideshow-arrows {
    padding: 0;
    mix-blend-mode: normal;
  }

  .announcement-bar__slider slideshow-arrows .slideshow-control {
    color: var(--color-foreground);
  }

  .announcement-bar__slider .slideshow-control {
    display: flex;
    padding: 0;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: none;

    @media screen and (min-width: 750px) {
      --slideshow-control-offset: calc((var(--button-size) - var(--icon-size-xs)) / 2);

      .section--page-width &.slideshow-control--previous {
        transform: translateX(var(--slideshow-control-offset));
      }
    }
  }

  .announcement-bar__slider .slideshow-control .svg-wrapper {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .announcement-bar__slide {
    place-content: center;
  }

  .announcement-bar__text:first-child {
    margin: 0;
  }

  .announcement-bar__link {
    position: absolute;
    inset: 0;
  }
/* END_SECTION:header-announcements */
/* START_SECTION:lumiere-cart-drawer (INDEX:19) */
lumiere-cart-drawer {
    display: block;
  }

  /* ---------- Overlay ---------- */
  .lcd-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--lcd-z-index, 1000);
    background-color: var(--lcd-overlay-color, #1F1F1F);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--lcd-overlay-transition-duration, 300ms) ease;
  }

  lumiere-cart-drawer[data-open] .lcd-overlay {
    opacity: var(--lcd-overlay-opacity-desktop, 0.45);
    pointer-events: auto;
  }

  @media screen and (max-width: 749px) {
    lumiere-cart-drawer[data-open] .lcd-overlay {
      opacity: var(--lcd-overlay-opacity-mobile, 0.55);
    }
  }

  /* ---------- Panel ---------- */
  .lcd-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: calc(var(--lcd-z-index, 1000) + 1);
    height: 100vh;
    height: 100dvh;
    width: var(--lcd-width-desktop, 500px);
    max-width: var(--lcd-max-width, 560px);
    background-color: var(--lcd-bg, #FFFFFF);
    color: var(--lcd-text, #1F1F1F);
    direction: rtl;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    translate: 100% 0;
    transition: translate var(--lcd-transition-duration, 350ms) var(--lcd-transition-easing, ease-in-out);
  }

  lumiere-cart-drawer[data-open] .lcd-panel {
    translate: 0 0;
  }

  @media screen and (min-width: 990px) and (max-width: 1199px) {
    .lcd-panel {
      width: var(--lcd-width-tablet, 460px);
    }
  }

  @media screen and (max-width: 749px) {
    .lcd-panel {
      width: var(--lcd-width-mobile, 92%);
      max-width: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .lcd-overlay,
    .lcd-panel {
      transition-duration: 0.01ms;
    }
  }

  /* ---------- Header ---------- */
  .lcd-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--lcd-header-height-desktop, 72px);
    padding-inline: var(--lcd-header-padding-h, 24px);
    border-bottom: var(--lcd-divider-thickness, 1px) solid var(--lcd-divider-color, #D7D3CE);
  }

  @media screen and (max-width: 749px) {
    .lcd-header {
      height: var(--lcd-header-height-mobile, 60px);
      padding-inline: var(--lcd-mobile-header-padding, 16px);
    }
  }

  .lcd-header__title {
    margin: 0;
    font-family: var(--font-heading--family, inherit);
    font-size: var(--lcd-heading-size-desktop, 20px);
    font-weight: var(--lcd-heading-weight, 400);
    color: var(--lcd-heading-color, #1F1F1F);
    text-align: right;
    letter-spacing: 0.02em;
  }

  @media screen and (max-width: 749px) {
    .lcd-header__title {
      font-size: var(--lcd-heading-size-mobile, 18px);
    }
  }

  .lcd-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-inline-start: -10px;
    flex-shrink: 0;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: var(--lcd-close-icon-color, #1F1F1F);
    outline: none;
  }

  .lcd-close__icon {
    display: inline-flex;
    width: var(--lcd-close-icon-size-desktop, 16px);
    height: var(--lcd-close-icon-size-desktop, 16px);
  }

  @media screen and (max-width: 749px) {
    .lcd-close__icon {
      width: var(--lcd-close-icon-size-mobile, 15px);
      height: var(--lcd-close-icon-size-mobile, 15px);
    }
  }

  .lcd-close__icon svg,
  .lcd-close__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* ---------- Free shipping bar ---------- */
  .lcd-shipping {
    flex: 0 0 auto;
    padding: var(--lcd-shipping-padding, 20px) var(--lcd-header-padding-h, 24px);
    border-bottom: var(--lcd-divider-thickness, 1px) solid var(--lcd-divider-color, #D7D3CE);
    text-align: center;
  }

  .lcd-shipping[hidden] {
    display: none;
  }

  .lcd-shipping__text {
    margin: 0 0 10px;
    font-size: var(--lcd-shipping-text-size, 13px);
    color: var(--lcd-text, #1F1F1F);
  }

  .lcd-shipping__track {
    position: relative;
    direction: rtl;
    height: var(--lcd-shipping-height, 4px);
    border-radius: var(--lcd-shipping-radius, 999px);
    background-color: var(--lcd-shipping-bg, #ECE7DE);
    overflow: visible;
  }

  .lcd-shipping__fill {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background-color: var(--lcd-shipping-active, #0A385C);
    transition: width 400ms ease;
  }

  .lcd-shipping__marker {
    position: absolute;
    left: -2px;
    top: 50%;
    translate: -50% -50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--lcd-shipping-icon-size, 22px);
    height: var(--lcd-shipping-icon-size, 22px);
    border-radius: 50%;
    background-color: var(--lcd-bg, #FFFFFF);
    border: 1px solid var(--lcd-divider-color, #D7D3CE);
    color: var(--lcd-shipping-active, #0A385C);
  }

  .lcd-shipping--reached .lcd-shipping__marker {
    background-color: var(--lcd-shipping-active, #0A385C);
    border-color: var(--lcd-shipping-active, #0A385C);
    color: var(--lcd-bg, #FFFFFF);
  }

  .lcd-shipping__marker svg,
  .lcd-shipping__marker img {
    width: 58%;
    height: 58%;
    object-fit: contain;
  }

  .lcd-shipping__label {
    margin: 8px 0 0;
    font-size: 11px;
    letter-spacing: 0.03em;
    color: rgb(var(--color-foreground-rgb, 31 31 31) / 0.65);
  }

  @media (prefers-reduced-motion: reduce) {
    .lcd-shipping__fill {
      transition-duration: 0.01ms;
    }
  }

  /* ---------- Body ---------- */
  .lcd-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .lcd-empty {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: var(--lcd-empty-spacing, 40px) 24px;
    text-align: center;
  }

  .lcd-empty[hidden] {
    display: none;
  }

  .lcd-empty__heading {
    margin: 0;
    font-family: var(--font-heading--family, inherit);
    font-size: 18px;
    color: var(--lcd-text, #1F1F1F);
  }

  .lcd-empty__text {
    margin: 0;
    font-size: 14px;
    color: rgb(var(--color-foreground-rgb, 31 31 31) / 0.7);
  }

  .lcd-empty__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--lcd-empty-btn-bg, #1F1F1F);
    color: var(--lcd-empty-btn-text, #FFFFFF);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  /* ---------- Items ---------- */
  .lcd-items {
    list-style: none;
    margin: 0;
    padding: 20px var(--lcd-header-padding-h, 24px);
    flex: 1 1 auto;
  }

  .lcd-items[hidden] {
    display: none;
  }

  .lcd-items[aria-busy='true'] {
    opacity: 0.5;
    pointer-events: none;
  }

  /* Children are placed with an explicit grid-column (3, 2, 1 — matching
     price/content/media's DOM order) but no explicit grid-row. Grid
     auto-placement starts a NEW row whenever the next item's column is
     lower than the previous one's ("column order going backward"), which
     is exactly what a descending 3 → 2 → 1 sequence triggers — silently
     splitting price/content/media onto three separate rows instead of one.
     Every child below pins grid-row: 1 to opt out of that entirely. */
  .lcd-item {
    display: grid;
    grid-template-columns: var(--lcd-image-w-desktop, 110px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--lcd-item-row-gap, 20px);
  }

  .lcd-item:last-child {
    margin-bottom: 0;
  }

  @media screen and (max-width: 749px) {
    .lcd-item {
      grid-template-columns: var(--lcd-image-w-mobile, 92px) minmax(0, 1fr) auto;
    }
  }

  .lcd-item__media {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    position: relative;
    display: block;
    width: var(--lcd-image-w-desktop, 110px);
    height: var(--lcd-image-h-desktop, 130px);
    background-color: var(--lcd-image-bg, #F5F3EF);
    overflow: hidden;
    border-radius: var(--lcd-image-radius, 0px);
  }

  @media screen and (max-width: 749px) {
    .lcd-item__media {
      width: var(--lcd-image-w-mobile, 92px);
      height: var(--lcd-image-h-mobile, 108px);
    }
  }

  .lcd-item__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--lcd-image-fit, contain);
    display: block;
  }

  .lcd-item__price {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    white-space: nowrap;
    font-family: var(--font-body--family, inherit);
  }

  .lcd-item__price-compare {
    font-size: 12px;
    color: rgb(var(--color-foreground-rgb, 31 31 31) / 0.5);
    text-decoration: line-through;
  }

  .lcd-item__price-current {
    font-size: var(--lcd-item-price-size, 14px);
    color: var(--lcd-text, #1F1F1F);
  }

  .lcd-item__content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: var(--lcd-item-info-gap, 6px);
    min-width: 0;
  }

  .lcd-item__title {
    display: block;
    font-family: var(--font-body--family, inherit);
    font-size: var(--lcd-item-title-size-desktop, 15px);
    font-weight: var(--lcd-item-title-weight, 400);
    color: var(--lcd-item-title-color, #1F1F1F);
    text-decoration: none;
    text-align: right;
  }

  @media screen and (max-width: 749px) {
    .lcd-item__title {
      font-size: var(--lcd-item-title-size-mobile, 14px);
    }
  }

  .lcd-item__title:hover {
    text-decoration: underline;
  }

  .lcd-item__variant {
    margin: 0;
    font-size: var(--lcd-item-variant-size, 13px);
    color: var(--lcd-item-variant-color, rgb(31 31 31 / 0.6));
  }

  .lcd-item__unit-price {
    margin: 0;
    font-size: var(--lcd-item-unit-price-size, 13px);
    color: var(--lcd-item-unit-price-color, rgb(31 31 31 / 0.6));
  }

  .lcd-item__property {
    margin: 0;
    font-size: 12px;
    color: rgb(var(--color-foreground-rgb, 31 31 31) / 0.65);
  }

  .lcd-item__property a {
    color: inherit;
  }

  .lcd-item__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
    flex-wrap: wrap;
  }

  .lcd-qty {
    display: inline-flex;
    align-items: center;
    width: var(--lcd-qty-width, 96px);
    height: var(--lcd-qty-height, 32px);
    border: var(--lcd-qty-border-width, 1px) solid var(--lcd-qty-border-color, #1F1F1F);
    box-sizing: border-box;
  }

  .lcd-qty__btn {
    flex: 0 0 30%;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--lcd-qty-btn-color, #1F1F1F);
    font-size: var(--lcd-qty-icon-size, 14px);
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (hover: hover) {
    .lcd-qty__btn:hover {
      color: var(--lcd-qty-hover-color, #0A385C);
    }
  }

  .lcd-qty__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .lcd-qty__input {
    flex: 1 1 40%;
    width: 0;
    text-align: center;
    border: 0;
    background: transparent;
    color: var(--lcd-qty-text-color, #1F1F1F);
    font-size: 13px;
    pointer-events: none;
  }

  .lcd-item__remove {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-size: var(--lcd-remove-size, 13px);
    color: var(--lcd-remove-color, rgb(31 31 31 / 0.6));
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: var(--lcd-remove-underline, 1px);
  }

  @media (hover: hover) {
    .lcd-item__remove:hover {
      color: var(--lcd-remove-hover-color, #0A385C);
    }
  }

  /* ---------- Footer ---------- */
  .lcd-footer {
    flex: 0 0 auto;
    padding: var(--lcd-footer-padding-desktop, 20px) var(--lcd-header-padding-h, 24px);
    border-top: var(--lcd-divider-thickness, 1px) solid var(--lcd-divider-color, #D7D3CE);
  }

  @media screen and (max-width: 749px) {
    .lcd-footer {
      padding: var(--lcd-footer-padding-mobile, 16px) var(--lcd-mobile-header-padding, 16px);
    }
  }

  /* ---------- Discount ---------- */
  .lcd-discount {
    border-bottom: var(--lcd-divider-thickness, 1px) solid var(--lcd-divider-color, #D7D3CE);
    margin-bottom: 12px;
  }

  .lcd-discount__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body--family, inherit);
    font-size: 14px;
    color: var(--lcd-text, #1F1F1F);
  }

  .lcd-discount__summary::-webkit-details-marker {
    display: none;
  }

  .lcd-discount__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lcd-discount-icon-size, 12px);
    height: var(--lcd-discount-icon-size, 12px);
    flex-shrink: 0;
  }

  .lcd-icon-cross {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .lcd-icon-cross span {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-color: currentColor;
  }

  .lcd-icon-cross span:first-child {
    width: 100%;
    height: 1px;
  }

  .lcd-icon-cross span:last-child {
    width: 1px;
    height: 100%;
  }

  .lcd-discount[open] .lcd-icon-cross span:last-child {
    display: none;
  }

  .lcd-icon-plus,
  .lcd-icon-minus {
    display: inline-flex;
    width: 100%;
    height: 100%;
  }

  .lcd-icon-minus {
    display: none;
  }

  .lcd-discount[open] .lcd-icon-plus {
    display: none;
  }

  .lcd-discount[open] .lcd-icon-minus {
    display: inline-flex;
  }

  .lcd-discount__panel {
    display: flex;
    gap: 10px;
    padding-bottom: 16px;
  }

  .lcd-discount__input {
    flex: 1 1 auto;
    height: var(--lcd-discount-input-height, 44px);
    padding: 0 12px;
    border: 1px solid var(--lcd-discount-input-border, #DDDDDD);
    background: transparent;
    color: var(--lcd-text, #1F1F1F);
    font-family: var(--font-body--family, inherit);
    font-size: 14px;
    text-align: right;
    box-sizing: border-box;
  }

  .lcd-discount__apply {
    flex: 0 0 auto;
    height: var(--lcd-discount-input-height, 44px);
    padding: 0 18px;
    border: 0;
    background-color: var(--lcd-discount-apply-bg, #1F1F1F);
    color: var(--lcd-discount-apply-text, #FFFFFF);
    cursor: pointer;
    font-family: var(--font-body--family, inherit);
    font-size: 13px;
  }

  /* ---------- Subtotal / checkout ---------- */
  .lcd-subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 8px;
    font-family: var(--font-body--family, inherit);
    font-size: var(--lcd-subtotal-size, 16px);
    color: var(--lcd-subtotal-color, #1F1F1F);
  }

  .lcd-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px;
  }

  .lcd-terms__checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--lcd-terms-accent, #0A385C);
    cursor: pointer;
  }

  .lcd-terms__label {
    font-family: var(--font-body--family, inherit);
    font-size: var(--lcd-terms-font-size, 12px);
    line-height: 1.5;
    color: var(--lcd-terms-text, #1F1F1F);
    cursor: pointer;
  }

  .lcd-terms__label a {
    color: var(--lcd-terms-link, #0A385C);
    text-decoration: underline;
    text-underline-offset: 0.15em;
  }

  .lcd-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--lcd-checkout-height-desktop, 54px);
    background-color: var(--lcd-checkout-bg, #0A385C);
    color: var(--lcd-checkout-text, #FFFFFF);
    text-decoration: none;
    font-family: var(--font-body--family, inherit);
    font-size: var(--lcd-checkout-font-size-desktop, 15px);
    font-weight: var(--lcd-checkout-weight, 500);
    letter-spacing: var(--lcd-checkout-letter-spacing, 0.5px);
    border-radius: var(--lcd-checkout-radius, 0px);
    box-sizing: border-box;
  }

  @media screen and (max-width: 749px) {
    .lcd-checkout {
      height: var(--lcd-checkout-height-mobile, 50px);
      font-size: var(--lcd-checkout-font-size-mobile, 14px);
    }
  }

  @media (hover: hover) {
    .lcd-checkout:hover {
      background-color: var(--lcd-checkout-hover-bg, #1F1F1F);
      color: var(--lcd-checkout-hover-text, #FFFFFF);
    }
  }

  .lcd-checkout--disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  @media screen and (max-width: 749px) {
    /* No horizontal scroll: everything inside the drawer must respect the
       panel's own width exactly. */
    .lcd-panel,
    .lcd-header,
    .lcd-shipping,
    .lcd-items,
    .lcd-footer {
      max-width: 100%;
      box-sizing: border-box;
    }
  }
/* END_SECTION:lumiere-cart-drawer */
/* START_SECTION:lumiere-contact (INDEX:20) */
.lumiere-contact {
    display: block;
    direction: rtl;
    background-color: var(--lumiere-contact-bg);
    padding-block: var(--lumiere-contact-padding-top-mobile) var(--lumiere-contact-padding-bottom-mobile);
    padding-inline: var(--lumiere-contact-padding-h-mobile);
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact {
      padding-block: var(--lumiere-contact-padding-top-desktop) var(--lumiere-contact-padding-bottom-desktop);
      padding-inline: var(--lumiere-contact-padding-h-desktop);
    }
  }

  .lumiere-contact__inner {
    max-width: var(--lumiere-contact-max-width);
    margin-inline: auto;
  }

  .lumiere-contact__header {
    text-align: center;
    padding-bottom: var(--lumiere-contact-spacing-below-heading);
  }

  .lumiere-contact__eyebrow {
    margin: 0 0 var(--lumiere-contact-spacing-eyebrow-heading);
    color: var(--lumiere-contact-eyebrow-color);
    font-family: var(--font-body--family);
    font-size: var(--lumiere-contact-eyebrow-size-mobile);
    font-weight: var(--lumiere-contact-eyebrow-weight);
    letter-spacing: var(--lumiere-contact-eyebrow-letter-spacing);
    text-transform: uppercase;
  }

  @media screen and (min-width: 990px) {
    .lumiere-contact__eyebrow {
      font-size: var(--lumiere-contact-eyebrow-size-desktop);
    }
  }

  .lumiere-contact__heading {
    margin: 0;
    color: var(--lumiere-contact-heading-color);
    font-family: var(--font-heading--family);
    font-size: var(--lumiere-contact-heading-size-mobile);
    font-weight: var(--lumiere-contact-heading-weight);
    letter-spacing: var(--lumiere-contact-heading-letter-spacing);
    line-height: var(--lumiere-contact-heading-line-height);
  }

  @media screen and (min-width: 990px) {
    .lumiere-contact__heading {
      font-size: var(--lumiere-contact-heading-size-desktop);
    }
  }

  .lumiere-contact__form-wrap,
  .lumiere-contact__bar-wrap {
    max-width: var(--lumiere-contact-form-width);
    margin-inline: auto;
  }

  .lumiere-contact__form {
    display: grid;
    gap: var(--lumiere-contact-fields-gap-v);
  }

  .lumiere-contact__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lumiere-contact-fields-gap-v);
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact__row {
      grid-template-columns: 1fr 1fr;
      gap: var(--lumiere-contact-fields-gap-v) var(--lumiere-contact-fields-gap-h);
    }

    .lumiere-contact--stack-desktop .lumiere-contact__row {
      grid-template-columns: 1fr;
    }
  }

  .lumiere-contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .lumiere-contact__label {
    color: var(--lumiere-contact-field-text);
    font-family: var(--font-body--family);
    font-size: 13px;
    text-align: right;
  }

  .lumiere-contact__input,
  .lumiere-contact__textarea {
    display: block;
    width: 100%;
    background-color: var(--lumiere-contact-field-bg);
    color: var(--lumiere-contact-field-text);
    border: var(--lumiere-contact-field-border-width) solid var(--lumiere-contact-field-border-color);
    border-radius: 0;
    box-shadow: none;
    text-align: right;
    direction: rtl;
    font-family: var(--font-body--family);
    font-size: var(--lumiere-contact-field-font-size-mobile);
    padding: var(--lumiere-contact-field-padding-v) var(--lumiere-contact-field-padding-h);
    transition: border-color 200ms ease;
  }

  @media screen and (min-width: 990px) {
    .lumiere-contact__input,
    .lumiere-contact__textarea {
      font-size: var(--lumiere-contact-field-font-size-desktop);
    }
  }

  .lumiere-contact__input {
    height: var(--lumiere-contact-input-height-mobile);
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact__input {
      height: var(--lumiere-contact-input-height-desktop);
    }
  }

  .lumiere-contact__textarea {
    height: var(--lumiere-contact-textarea-height-mobile);
    resize: var(--lumiere-contact-textarea-resize);
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact__textarea {
      height: var(--lumiere-contact-textarea-height-desktop);
    }
  }

  .lumiere-contact__input::placeholder,
  .lumiere-contact__textarea::placeholder {
    color: var(--lumiere-contact-field-placeholder);
  }

  .lumiere-contact__input:focus,
  .lumiere-contact__textarea:focus {
    outline: none;
    border-color: var(--lumiere-contact-field-focus-border-color);
  }

  .lumiere-contact__input:focus-visible,
  .lumiere-contact__textarea:focus-visible {
    outline: 2px solid var(--lumiere-contact-field-focus-border-color);
    outline-offset: 2px;
  }

  .lumiere-contact__submit-wrap {
    display: flex;
  }

  .lumiere-contact__submit-wrap--right {
    justify-content: flex-start;
  }

  .lumiere-contact__submit-wrap--center {
    justify-content: center;
  }

  .lumiere-contact__submit-wrap--full {
    justify-content: stretch;
  }

  .lumiere-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lumiere-contact-button-full-width);
    height: var(--lumiere-contact-button-height);
    padding-inline: 32px;
    background-color: var(--lumiere-contact-button-bg);
    color: var(--lumiere-contact-button-text);
    border: none;
    border-radius: 0;
    font-family: var(--font-body--family);
    font-size: var(--lumiere-contact-button-font-size);
    letter-spacing: var(--lumiere-contact-button-letter-spacing);
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 200ms ease, color 200ms ease;
  }

  .lumiere-contact__submit-wrap--full .lumiere-contact__submit {
    width: 100%;
  }

  .lumiere-contact__submit:hover,
  .lumiere-contact__submit:focus-visible {
    background-color: var(--lumiere-contact-button-hover-bg);
    color: var(--lumiere-contact-button-hover-text);
  }

  .lumiere-contact__submit:focus-visible {
    outline: 2px solid var(--lumiere-contact-button-hover-bg);
    outline-offset: 2px;
  }

  .lumiere-contact__message {
    text-align: right;
    font-family: var(--font-body--family);
    font-size: var(--lumiere-contact-message-font-size);
    padding: 16px 18px;
    border: 1px solid currentColor;
  }

  .lumiere-contact__message--success {
    color: var(--lumiere-contact-success-text);
    background-color: var(--lumiere-contact-success-bg);
    border-color: var(--lumiere-contact-success-text);
  }

  .lumiere-contact__message--error {
    color: var(--lumiere-contact-error-text);
    background-color: var(--lumiere-contact-error-bg);
    border-color: var(--lumiere-contact-error-text);
  }

  .lumiere-contact__errors {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
  }

  .lumiere-contact__bar-wrap {
    margin-top: var(--lumiere-contact-gap-form-bar);
  }

  .lumiere-contact__bar {
    display: flex;
    flex-direction: column;
    background-color: var(--lumiere-contact-bar-bg);
    border-block-start: var(--lumiere-contact-bar-border-top);
    border-block-end: var(--lumiere-contact-bar-border-bottom);
  }

  .lumiere-contact__bar--mobile-row {
    flex-direction: row;
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact__bar {
      flex-direction: row;
    }
  }

  .lumiere-contact__bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--lumiere-contact-icon-text-gap);
    padding: var(--lumiere-contact-item-padding-mobile);
    min-height: var(--lumiere-contact-item-min-height);
    color: var(--lumiere-contact-bar-text);
    text-decoration: none;
    border-block-start: var(--lumiere-contact-divider-width) solid var(--lumiere-contact-divider-color);
    transition: color 200ms ease, background-color 200ms ease;
  }

  .lumiere-contact__bar-item:first-child {
    border-block-start: none;
  }

  .lumiere-contact__bar--mobile-row .lumiere-contact__bar-item {
    border-block-start: none;
    border-inline-start: var(--lumiere-contact-divider-width) solid var(--lumiere-contact-divider-color);
  }

  .lumiere-contact__bar--mobile-row .lumiere-contact__bar-item:first-child {
    border-inline-start: none;
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact__bar-item {
      padding: var(--lumiere-contact-item-padding-desktop);
      border-block-start: none;
      border-inline-start: var(--lumiere-contact-divider-width) solid var(--lumiere-contact-divider-color);
    }

    .lumiere-contact__bar-item:first-child {
      border-inline-start: none;
    }
  }

  .lumiere-contact__bar-item:hover,
  .lumiere-contact__bar-item:focus-visible {
    color: var(--lumiere-contact-bar-hover-text);
    background-color: var(--lumiere-contact-bar-hover-bg);
  }

  .lumiere-contact__bar-item:focus-visible {
    outline: 2px solid var(--lumiere-contact-bar-hover-text);
    outline-offset: -2px;
  }

  .lumiere-contact__bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--lumiere-contact-item-icon-size-mobile);
    height: var(--lumiere-contact-item-icon-size-mobile);
    color: var(--lumiere-contact-icon-color);
  }

  @media screen and (min-width: 750px) {
    .lumiere-contact__bar-icon {
      width: var(--lumiere-contact-item-icon-size-desktop);
      height: var(--lumiere-contact-item-icon-size-desktop);
    }
  }

  .lumiere-contact__bar-item:hover .lumiere-contact__bar-icon {
    color: var(--lumiere-contact-icon-hover-color);
  }

  .lumiere-contact__bar-icon svg,
  .lumiere-contact__bar-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .lumiere-contact__bar-text {
    font-family: var(--font-body--family);
    font-size: var(--lumiere-contact-bar-text-size-mobile);
    font-weight: var(--lumiere-contact-bar-text-weight);
    line-height: var(--lumiere-contact-bar-text-line-height);
  }

  @media screen and (min-width: 990px) {
    .lumiere-contact__bar-text {
      font-size: var(--lumiere-contact-bar-text-size-desktop);
    }
  }
/* END_SECTION:lumiere-contact */
/* START_SECTION:lumiere-footer (INDEX:23) */
.lf {
    display: block;
    background-color: var(--lf-bg);
    color: #ffffff;
    width: 100%;
    direction: var(--lf-direction, rtl);
  }

  .lf-container {
    max-width: var(--lf-max-width);
    margin-inline: auto;
    min-height: var(--lf-min-height);
    padding-block: var(--lf-padding-top) var(--lf-padding-bottom);
    padding-inline: var(--lf-padding-h);
    display: flex;
    align-items: center;
  }

  .lf-grid {
    width: 100%;
    display: grid;
    /* Reversed from the original (logo-area 1st column / menus 2nd): the
       menus now take the wide 1fr column and the logo area takes the
       narrow one. Visual left/right position is controlled by `order`
       below (not DOM order), so reading/tab order stays logo-first. */
    grid-template-columns: 1fr var(--lf-logo-area-width);
    column-gap: var(--lf-logo-menu-gap);
    align-items: var(--lf-vertical-align, start);
  }

  .lf-logo-area {
    display: flex;
    flex-direction: column;
    align-items: var(--lf-logo-align, end);
    /* Placed in the grid's 2nd column (left side, in RTL) — see .lf-grid. */
    order: 2;
  }

  .lf-logo {
    display: block;
    width: var(--lf-logo-width);
    max-height: var(--lf-logo-max-height);
    margin-bottom: var(--lf-logo-margin-bottom);
    color: inherit;
    text-decoration: none;
  }

  .lf-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: var(--lf-logo-max-height);
    object-fit: contain;
  }

  .lf-logo__text {
    display: block;
    font-family: var(--font-heading--family);
    font-size: calc(var(--lf-logo-max-height) * 0.4);
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ffffff;
  }

  .lf-social {
    display: flex;
    align-items: center;
    gap: var(--lf-social-gap);
  }

  .lf-social__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lf-social-circle-size);
    height: var(--lf-social-circle-size);
    border-radius: 50%;
    background-color: var(--lf-social-circle-bg);
    color: var(--lf-social-icon-color);
    text-decoration: none;
  }

  #LumiereFooter-{{ section.id }}[data-social-style='plain'] .lf-social__item {
    background-color: transparent;
    color: #ffffff;
    width: auto;
    height: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lf-social__item {
      transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }
  }

  .lf-social__item:hover,
  .lf-social__item:focus-visible {
    opacity: 0.8;
    background-color: var(--lf-social-hover-bg);
    color: var(--lf-social-hover-icon);
  }

  .lf-social__icon {
    display: block;
    width: var(--lf-social-icon-size);
    height: var(--lf-social-icon-size);
  }

  .lf-social__icon path {
    fill: currentColor;
  }

  .lf-social__item img {
    display: block;
    width: var(--lf-social-icon-size);
    height: var(--lf-social-icon-size);
    object-fit: contain;
  }

  .lf-menus {
    display: grid;
    grid-template-columns: var(--lf-menus-grid-columns);
    column-gap: var(--lf-menu-column-gap);
    row-gap: var(--lf-menu-column-gap);
    justify-content: var(--lf-menu-area-justify, center);
    /* Placed in the grid's 1st column (right side, in RTL) — see .lf-grid. */
    order: 1;
  }

  .lf-menu-col {
    min-width: var(--lf-menu-column-min-width);
  }

  .lf-menu-col--1 {
    text-align: var(--lf-menu-1-align, end);
  }

  .lf-menu-col--2 {
    text-align: var(--lf-menu-2-align, end);
  }

  .lf-menu-col__title {
    margin: 0 0 0.75em;
    font-size: var(--lf-menu-1-title-size);
    color: var(--lf-menu-1-title-color);
    font-weight: 500;
  }

  .lf-menu-col--2 .lf-menu-col__title {
    font-size: var(--lf-menu-2-title-size);
    color: var(--lf-menu-2-title-color);
  }

  .lf-menu-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .lf-menu-col--1 .lf-menu-col__list {
    display: flex;
    flex-direction: column;
    gap: var(--lf-menu-1-item-gap);
  }

  .lf-menu-col--2 .lf-menu-col__list {
    display: flex;
    flex-direction: column;
    gap: var(--lf-menu-2-item-gap);
  }

  .lf-menu-col--1 .lf-menu-col__link {
    font-size: var(--lf-menu-1-link-size);
    line-height: var(--lf-menu-1-line-height);
    color: var(--lf-menu-1-link-color);
  }

  .lf-menu-col--2 .lf-menu-col__link {
    font-size: var(--lf-menu-2-link-size);
    line-height: var(--lf-menu-2-line-height);
    color: var(--lf-menu-2-link-color);
  }

  .lf-menu-col__link {
    display: inline-block;
    font-family: var(--font-body--family);
    font-weight: 400;
    text-decoration: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lf-menu-col__link {
      transition: color 0.2s ease;
    }
  }

  .lf-menu-col--1 .lf-menu-col__link:hover,
  .lf-menu-col--1 .lf-menu-col__link:focus-visible {
    color: var(--lf-menu-1-link-hover-color);
  }

  .lf-menu-col--2 .lf-menu-col__link:hover,
  .lf-menu-col--2 .lf-menu-col__link:focus-visible {
    color: var(--lf-menu-2-link-hover-color);
  }

  @media screen and (max-width: 749px) {
    .lf-container {
      align-items: stretch;
    }

    .lf-grid {
      grid-template-columns: 1fr;
      row-gap: var(--lf-logo-menu-gap);
    }

    .lf-logo-area {
      align-items: center;
      /* Stacked on mobile — revert to natural DOM order (logo first). */
      order: 0;
    }

    .lf-social {
      justify-content: center;
    }

    .lf-menus {
      justify-content: stretch;
      text-align: center;
      order: 0;
    }

    .lf-menu-col--1,
    .lf-menu-col--2 {
      text-align: center;
      min-width: 0;
    }
  }
/* END_SECTION:lumiere-footer */
/* START_SECTION:lumiere-header (INDEX:24) */
lumiere-header {
    display: block;
  }

  /* Always position: fixed (immune to any ancestor overflow/scroll-container quirks
     that native position: sticky can fall victim to). --lh-dynamic-top is kept in sync
     with scroll position by LumiereHeader so the bar stays glued directly under
     whatever precedes it (Announcement Bar / mobile brand bar) as that content scrolls
     away — see #getPrecedingOffset in the script below — and locks to the very top
     once it's scrolled past, on every page. */
  .lh-bar {
    position: fixed;
    top: var(--lh-dynamic-top, 0px);
    left: 0;
    right: 0;
    /* Must stay below the cart/search/theme drawers (z-index: var(--layer-sticky), see
       theme-drawer-styles.liquid) so an open drawer always renders above the header. */
    z-index: calc(var(--layer-sticky) - 1);
    background-color: transparent;
    color: var(--lh-transparent-text);
    border-bottom: 1px solid var(--lh-transparent-border);
  }

  /* Since the bar itself is always position: fixed (zero flow footprint on its own),
     .lh-spacer reserves the equivalent space in normal document flow so page content
     isn't hidden underneath it. LumiereHeader keeps its height in sync with the bar's
     rendered height — except on the home page, where it's forced to 0 so the header
     keeps overlapping the Hero exactly as before. */
  .lh-spacer {
    height: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-bar {
      transition:
        background-color var(--lh-transition) ease,
        color var(--lh-transition) ease,
        border-color var(--lh-transition) ease,
        box-shadow var(--lh-transition) ease;
    }
  }

  lumiere-header[data-scrolled] .lh-bar,
  lumiere-header:not([data-scrolled]) .lh-bar:hover,
  lumiere-header:not([data-scrolled]) .lh-bar:focus-within {
    background-color: var(--lh-hover-bg);
    color: var(--lh-hover-text);
    border-bottom-color: var(--lh-hover-border);
  }

  lumiere-header[data-scrolled] .lh-bar {
    background-color: var(--lh-sticky-bg);
    color: var(--lh-sticky-text);
    border-bottom-color: var(--lh-sticky-border);
  }

  lumiere-header[data-scrolled][data-shadow] .lh-bar {
    box-shadow: var(--lh-sticky-shadow);
  }

  /* When the transparent-over-hero phase is turned off, the bar always uses
     its solid (hover/sticky) palette, even before the user scrolls. */
  lumiere-header[data-transparent-enabled='false'] .lh-bar {
    background-color: var(--lh-sticky-bg);
    color: var(--lh-sticky-text);
    border-bottom-color: var(--lh-sticky-border);
  }

  /* Non-home pages: independent background/text/border colors, fully decoupled
     from the home page's scroll-triggered sticky palette above (same
     specificity — must come after it to win the cascade). Background/text
     default to match the sticky colors (so nothing changes until explicitly
     customized); the border is always the fixed brand divider color. */
  lumiere-header[data-is-home='false'] .lh-bar {
    background-color: var(--lh-non-home-bg);
    color: var(--lh-non-home-text);
    border-bottom-color: var(--lh-static-divider-color);
  }

  /* Non-home pages, once scrolling starts: the divider switches to white
     (higher specificity than the rule above, so it always wins once
     [data-scrolled] is set, regardless of source order). */
  lumiere-header[data-is-home='false'][data-scrolled] .lh-bar {
    border-bottom-color: var(--lh-scrolled-divider-color);
  }

  .lh-container {
    max-width: var(--lh-max-width);
    margin-inline: auto;
    padding-inline: var(--lh-h-padding);
  }

  .lh-row--top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: var(--lh-gap);
    height: var(--lh-top-height);
  }

  .lh-row--nav {
    display: grid;
    /* Same 1fr auto 1fr formula as .lh-row--top so the nav's center column
       lands on the exact same X coordinate as the logo above it. */
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--lh-nav-height);
  }

  .lh-row--nav .lh-nav {
    grid-column: 2;
    justify-self: center;
  }

  .lh-zone {
    display: flex;
    align-items: center;
    gap: var(--lh-gap);
  }

  .lh-zone--left {
    justify-self: start;
  }

  .lh-zone--center {
    justify-self: center;
  }

  .lh-zone--right {
    justify-self: end;
  }

  .lh-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lh-hit-area);
    height: var(--lh-hit-area);
    margin: calc((var(--lh-hit-area) - 24px) / -2);
    color: inherit;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    text-decoration: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-icon-btn {
      transition: opacity var(--lh-transition) ease;
    }
  }

  .lh-icon-btn:hover {
    opacity: 0.7;
  }

  .lh-icon {
    display: inline-flex;
    width: var(--lh-icon-size);
    height: var(--lh-icon-size);
    position: relative;
  }

  .lh-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    color: currentColor;
  }

  .lh-icon__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .lh-icon__img--light {
    opacity: 1;
  }

  .lh-icon__img--dark {
    opacity: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-icon__img {
      transition: opacity var(--lh-transition) ease;
    }
  }

  lumiere-header[data-scrolled] .lh-icon__img--light,
  lumiere-header:not([data-scrolled]) .lh-bar:hover .lh-icon__img--light,
  lumiere-header:not([data-scrolled]) .lh-bar:focus-within .lh-icon__img--light {
    opacity: 0;
  }

  lumiere-header[data-scrolled] .lh-icon__img--dark,
  lumiere-header:not([data-scrolled]) .lh-bar:hover .lh-icon__img--dark,
  lumiere-header:not([data-scrolled]) .lh-bar:focus-within .lh-icon__img--dark {
    opacity: 1;
  }

  lumiere-header[data-transparent-enabled='false'] .lh-icon__img--light {
    opacity: 0;
  }

  lumiere-header[data-transparent-enabled='false'] .lh-icon__img--dark {
    opacity: 1;
  }

  /* Cart item-count bubble: badge-positioned on top of the cart icon
     (rather than the shared snippet's default inline placement beside it),
     with its own colors swapped between the transparent and solid header
     states — same state selectors as the icon light/dark swap above, so
     the cascade behavior is identical and already proven correct. */
  .lh-icon-btn .cart-bubble {
    position: absolute;
    top: var(--lh-cart-bubble-offset-top);
    right: var(--lh-cart-bubble-offset-right);
    --cart-bubble-background: var(--lh-cart-bubble-bg-transparent);
    --cart-bubble-text: var(--lh-cart-bubble-text-transparent);
  }

  lumiere-header[data-scrolled] .lh-icon-btn .cart-bubble,
  lumiere-header:not([data-scrolled]) .lh-bar:hover .lh-icon-btn .cart-bubble,
  lumiere-header:not([data-scrolled]) .lh-bar:focus-within .lh-icon-btn .cart-bubble {
    --cart-bubble-background: var(--lh-cart-bubble-bg-solid);
    --cart-bubble-text: var(--lh-cart-bubble-text-solid);
  }

  lumiere-header[data-transparent-enabled='false'] .lh-icon-btn .cart-bubble {
    --cart-bubble-background: var(--lh-cart-bubble-bg-solid);
    --cart-bubble-text: var(--lh-cart-bubble-text-solid);
  }

  .lh-logo {
    display: block;
    position: relative;
    width: var(--lh-logo-w-desktop);
    max-height: var(--lh-logo-max-h);
    text-decoration: none;
    color: inherit;
  }

  .lh-logo__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: var(--lh-logo-max-h);
    object-fit: contain;
  }

  .lh-logo__img--light {
    opacity: 1;
  }

  .lh-logo__img--dark {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-logo__img {
      transition: opacity var(--lh-transition) ease;
    }
  }

  lumiere-header[data-scrolled] .lh-logo__img--light,
  lumiere-header:not([data-scrolled]) .lh-bar:hover .lh-logo__img--light,
  lumiere-header:not([data-scrolled]) .lh-bar:focus-within .lh-logo__img--light {
    opacity: 0;
  }

  lumiere-header[data-scrolled] .lh-logo__img--dark,
  lumiere-header:not([data-scrolled]) .lh-bar:hover .lh-logo__img--dark,
  lumiere-header:not([data-scrolled]) .lh-bar:focus-within .lh-logo__img--dark {
    opacity: 1;
  }

  lumiere-header[data-transparent-enabled='false'] .lh-logo__img--light {
    opacity: 0;
  }

  lumiere-header[data-transparent-enabled='false'] .lh-logo__img--dark {
    opacity: 1;
  }

  .lh-logo__text {
    display: block;
    font-family: var(--font-heading--family);
    font-size: calc(var(--lh-logo-max-h) * 0.45);
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .lh-brand-links {
    display: flex;
    /* Same missing-direction bug as .lh-menu above — desktop-only (hidden
       below the breakpoint), so this doesn't touch the mobile brand bar,
       which is a separate element (.lh-brand-bar__inner). */
    direction: rtl;
    align-items: center;
    gap: 0.6em;
    font-size: var(--lh-brand-font-size);
    letter-spacing: var(--lh-brand-letter-spacing);
    text-transform: var(--lh-brand-text-transform);
  }

  .lh-brand-links__link {
    color: currentColor;
    text-decoration: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-brand-links__link {
      transition: opacity var(--lh-transition) ease;
    }
  }

  .lh-brand-links__link:hover {
    text-decoration: underline;
    text-underline-offset: 0.25em;
  }

  .lh-brand-links__divider {
    display: inline-block;
    width: var(--lh-divider-thickness);
    height: var(--lh-divider-height);
    background-color: currentColor;
    opacity: 0.4;
  }

  .lh-hamburger-btn {
    display: none;
  }

  .lh-nav {
    display: block;
  }

  .lh-menu {
    display: flex;
    /* Nothing sets dir="rtl" on <html> in this theme (every RTL section
       declares its own direction locally) — .lh-menu never had one, so it
       fell back to the CSS-initial ltr, laying the flex row out left to
       right instead of matching Hebrew reading order. Only affects this
       row: it's already hidden below the desktop breakpoint (see
       .lh-row--nav display:none in the mobile media query), so the mobile
       drawer menu (which sets its own direction:rtl already) is untouched. */
    direction: rtl;
    align-items: center;
    justify-content: center;
    gap: var(--lh-menu-gap);
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--lh-menu-font-size);
    letter-spacing: var(--lh-menu-letter-spacing);
    text-transform: var(--lh-menu-text-transform);
  }

  .lh-menu__item {
    position: relative;
  }

  .lh-menu__link {
    display: block;
    color: currentColor;
    text-decoration: none;
    padding-block: 0.35em;
  }

  .lh-menu__link::after {
    content: '';
    display: block;
    height: 1px;
    width: 0;
    background-color: currentColor;
    margin-top: 0.15em;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-menu__link::after {
      transition: width var(--lh-transition) ease;
    }
  }

  .lh-menu__link:hover::after,
  .lh-menu__link:focus-visible::after {
    width: 100%;
  }

  .lh-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 0;
    min-width: 180px;
    list-style: none;
    margin: 0;
    padding: 0.75em 0;
    background-color: var(--lh-sticky-bg);
    color: var(--lh-sticky-text);
    border: 1px solid rgb(var(--color-foreground-rgb, 0 0 0) / 0.08);
    box-shadow: var(--shadow-popover, 0 4px 20px rgb(0 0 0 / 0.1));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-transform: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-submenu {
      transition: opacity var(--lh-transition) ease;
    }
  }

  .lh-menu__item--has-children:hover .lh-submenu,
  .lh-menu__item--has-children:focus-within .lh-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .lh-submenu__link {
    display: block;
    color: currentColor;
    text-decoration: none;
    padding: 0.4em 1.25em;
    white-space: nowrap;
  }

  .lh-submenu__link:hover {
    text-decoration: underline;
  }

  /* ---------- Mobile brand bar ---------- */
  /* Visibility + sizing toggled per the configurable desktop breakpoint in
     the dynamic style block above (#LumiereHeader-<id> media queries). */
  .lh-brand-bar {
    display: none;
  }

  .lh-brand-bar__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.6em;
    font-size: var(--lh-bar-font-size);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* The divider (auto column) always lands on the true horizontal center
     this way, regardless of how the two link texts differ in length —
     each link is pinned to its own 1fr column, right up against the
     divider, and any leftover width goes to the outer edges instead. */
  .lh-brand-bar__link:first-child {
    justify-self: end;
  }

  .lh-brand-bar__link:last-child {
    justify-self: start;
  }

  .lh-brand-bar__link {
    color: currentColor;
    text-decoration: none;
  }

  .lh-brand-bar__link:hover {
    text-decoration: underline;
  }

  .lh-brand-bar__divider {
    display: inline-block;
    width: var(--lh-bar-divider-width);
    height: var(--lh-bar-divider-height);
    background-color: var(--lh-bar-divider);
    opacity: 0.8;
  }

  /* ---------- Responsive layout ---------- */
  /* Sizing/visibility swaps live in the dynamic style block above, keyed to
     the configurable desktop breakpoint. */

  /* ---------- Mobile menu drawer ---------- */
  lumiere-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: var(--layer-temporary);
    pointer-events: none;
  }

  .lh-drawer__overlay {
    position: absolute;
    inset: 0;
    background-color: var(--lh-overlay-color);
    opacity: 0;
  }

  .lh-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(var(--lh-drawer-width), 90vw);
    background-color: var(--lh-drawer-bg);
    color: var(--lh-drawer-text);
    overflow-y: auto;
    translate: 100% 0;
    padding: 1.5rem;
    /* Flex column so .lh-drawer__social (margin-top: auto below) can pin
       itself to the bottom of the drawer instead of just trailing
       whatever height the menu list happens to be. */
    display: flex;
    flex-direction: column;
    /* Hebrew menu content: force RTL direction and right-aligned text for
       everything inside the drawer (menu links, submenu links, etc. all
       inherit both), regardless of the page's own locale/dir. */
    direction: rtl;
    text-align: right;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-drawer__overlay {
      transition: opacity var(--lh-transition) ease;
    }

    .lh-drawer__panel {
      transition: translate var(--lh-transition) ease;
    }
  }

  lumiere-mobile-menu[data-open] {
    pointer-events: auto;
  }

  lumiere-mobile-menu[data-open] .lh-drawer__overlay {
    opacity: 1;
  }

  lumiere-mobile-menu[data-open] .lh-drawer__panel {
    translate: 0 0;
  }

  .lh-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lh-hit-area);
    height: var(--lh-hit-area);
    margin-inline-start: auto;
    margin-block-end: 1rem;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit;
  }

  .lh-drawer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .lh-drawer__item {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb, 0 0 0) / 0.1);
  }

  .lh-drawer__link,
  .lh-drawer__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--lh-drawer-item-padding);
    color: currentColor;
    text-decoration: none;
    font-size: var(--lh-drawer-menu-font-size);
    cursor: pointer;
    list-style: none;
  }

  .lh-drawer__summary::-webkit-details-marker {
    display: none;
  }

  .lh-drawer__caret {
    width: 0.75em;
    height: 0.75em;
    display: inline-flex;
  }

  .lh-drawer__caret svg {
    width: 100%;
    height: 100%;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-drawer__caret {
      transition: rotate var(--lh-transition) ease;
    }
  }

  .lh-drawer__details[open] .lh-drawer__caret {
    rotate: 180deg;
  }

  .lh-drawer__submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0.75em 1em;
  }

  .lh-drawer__sublink {
    display: block;
    padding-block: 0.6em;
    color: currentColor;
    text-decoration: none;
    font-size: var(--lh-drawer-submenu-font-size);
    opacity: 0.8;
  }

  /* ---------- Mobile drawer social icons ---------- */
  .lh-drawer__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    gap: var(--lh-drawer-social-gap);
    /* auto (not a fixed 2rem) pushes this row all the way to the bottom
       of the drawer panel — a normal-length menu no longer leaves it
       stranded right underneath the links. */
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(var(--color-foreground-rgb, 0 0 0) / 0.1);
  }

  .lh-drawer__social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lh-drawer-social-circle-size);
    height: var(--lh-drawer-social-circle-size);
    border-radius: 50%;
    background-color: var(--lh-drawer-social-circle-bg);
    color: var(--lh-drawer-social-icon-color);
    text-decoration: none;
  }

  lumiere-header[data-drawer-social-style='plain'] .lh-drawer__social-item {
    background-color: transparent;
    width: auto;
    height: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    .lh-drawer__social-item {
      transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }
  }

  .lh-drawer__social-item:hover,
  .lh-drawer__social-item:focus-visible {
    opacity: 0.8;
    background-color: var(--lh-drawer-social-hover-bg);
    color: var(--lh-drawer-social-hover-icon);
  }

  lumiere-header[data-drawer-social-style='plain'] .lh-drawer__social-item:hover,
  lumiere-header[data-drawer-social-style='plain'] .lh-drawer__social-item:focus-visible {
    background-color: transparent;
    color: var(--lh-drawer-social-hover-icon);
  }

  .lh-drawer__social-icon {
    display: block;
    width: var(--lh-drawer-social-icon-size);
    height: var(--lh-drawer-social-icon-size);
  }

  .lh-drawer__social-icon path {
    fill: currentColor;
  }

  .lh-drawer__social-item img {
    display: block;
    width: var(--lh-drawer-social-icon-size);
    height: var(--lh-drawer-social-icon-size);
    object-fit: contain;
  }
/* END_SECTION:lumiere-header */
/* START_SECTION:lumiere-loading-screen (INDEX:26) */
.lumiere-loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: var(--lumiere-ls-bg);
    opacity: 1;
    transition: opacity var(--lumiere-ls-fade-out) ease;
  }

  .lumiere-loading-screen.is-hiding {
    opacity: 0;
    pointer-events: none;
  }

  .lumiere-loading-screen__image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--lumiere-ls-fade-in) ease;
  }

  .lumiere-loading-screen.is-visible .lumiere-loading-screen__image {
    opacity: 1;
  }

  /* `<picture>` is inline by default — sized as a block filling the exact
     same box the old standalone `<img>` used to fill directly, so the `img`
     rule below still resolves its 100%/100% against an identically-sized
     box either way. Desktop vs. mobile is now the browser's own `<source
     media>` match (only one of the two ever actually downloads) instead of
     a CSS `display: none` swap that still fetched both. */
  .lumiere-loading-screen__image picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .lumiere-loading-screen__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (prefers-reduced-motion: reduce) {
    .lumiere-loading-screen,
    .lumiere-loading-screen__image {
      transition-duration: 0.01ms;
    }
  }
/* END_SECTION:lumiere-loading-screen */
/* START_BLOCK:_announcement (INDEX:56) */
.text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width).h1,
  .text-block:not(.text-block--full-width).h2,
  .text-block:not(.text-block--full-width).h3,
  .text-block:not(.text-block--full-width).h4,
  .text-block:not(.text-block--full-width).h5,
  .text-block:not(.text-block--full-width).h6 {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }
/* END_BLOCK:_announcement */
/* START_SNIPPET:cart-bubble (INDEX:163) */
.cart-bubble {
    --cart-padding: 0.2em;

    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    border-width: 0;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    color: var(--cart-bubble-text, var(--cart-bubble-text-fallback));
    padding-inline: var(--cart-padding);
  }

  .cart-bubble[data-maintain-ratio] {
    aspect-ratio: 1;
  }

  .cart-bubble[data-maintain-ratio] .cart-bubble__background {
    border-radius: var(--style-border-radius-50);
  }

  .cart-bubble__background {
    position: absolute;
    inset: 0;
    background-color: var(--cart-bubble-background, var(--cart-bubble-background-fallback));
    border-radius: var(--style-border-radius-lg);
  }

  .cart-bubble__text {
    font-size: var(--font-size--3xs);
    z-index: var(--layer-flat);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:cart-bubble */
/* START_SNIPPET:cart-drawer (INDEX:165) */
cart-drawer-component {
    --cart-drawer-padding: var(--theme-drawer-padding);
    --font-paragraph--line-height: 1;
    display: contents;
  }

  .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  .cart-drawer__inner > .cart-items-component {
    flex: 1;
    min-height: 0;
    height: auto;
  }

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

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

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    margin-bottom: var(--gap-xl);
  }

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

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

  .cart-drawer__close-button--empty {
    margin-inline-start: auto;
  }

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

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

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

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

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

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

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

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

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

  .cart-drawer--empty .cart-drawer__items {
    padding-inline: 0;
  }

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

  cart-drawer-component:not(:has(.cart-form)) .cart-drawer__items {
    padding-inline: 0;
  }

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

  :active-view-transition {
    .cart-drawer__header,
    .cart-drawer__content {
      background: transparent;
    }
  }
/* END_SNIPPET:cart-drawer */
/* START_SNIPPET:cart-items-component (INDEX:166) */
.cart-items-component {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer),
    html:active-view-transition-type(fill-cart-drawer) {
      .cart-items-component {
        view-transition-name: cart-drawer-content;
      }
    }

    html:active-view-transition-type(empty-cart-page) {
      .cart-items-component {
        view-transition-name: cart-page-content;
      }
    }
  }

  ::view-transition-old(cart-page-content) {
    animation: cart-page-content-old var(--animation-speed-fast) var(--animation-easing) forwards;
  }

  @keyframes cart-page-content-old {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      filter: blur(4px);
    }
  }

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

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

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

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
/* END_SNIPPET:cart-items-component */
/* START_SNIPPET:cart-products (INDEX:167) */
.cart-items {
    --cart-item-media-width-min: 2.5rem;
    --cart-item-media-width-max: 7.5rem;

    container-name: cart-items;
    container-type: inline-size;
    width: 100%;
  }

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

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

  .cart-page--empty .cart-items__wrapper {
    align-items: center;
    margin-block-start: 0;
    text-align: center;
  }

  .cart-items__wrapper--drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cart-items__table {
    width: 100%;
    border-spacing: 0;
  }

  .cart-items__table * {
    margin: 0;
  }

  .cart-items__table-row {
    --cart-item-price-width: 6rem;

    display: grid;
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) minmax(var(--cart-item-price-width), auto);
    grid-template-areas:
      'media details price'
      'media quantity price'
      'media error error';
    column-gap: var(--gap-md);
    align-items: start;
    padding-bottom: var(--cart-items-gap);
    margin-bottom: var(--margin-lg);
  }

  .cart-items__details {
    grid-area: details;
    min-width: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .cart-items__product-info {
    min-width: 0;
  }

  /* Cart drawer: separate grid areas for variants and unit price */
  .cart-items__table-row--full-width-variants {
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) auto;
    grid-template-rows: repeat(4, min-content) 1fr;
    grid-template-areas:
      'media details price'
      'media variants variants'
      'media unit_price unit_price'
      'media quantity quantity'
      'media error error';

    .cart-items__details {
      display: contents;
    }

    .cart-items__product-info {
      grid-area: details;
    }

    .cart-items__variants-wrapper {
      grid-area: variants;

      &:empty {
        display: none;
      }

      p {
        margin: 0;
      }
    }

    .cart-items__unit-price-wrapper {
      grid-area: unit_price;
      font-size: var(--font-size--sm);
    }

    .cart-items__price {
      min-width: auto;
      width: max-content;
    }
  }

  .cart-items__table-row.cart-items__nested-line td:first-child {
    width: 60%;
    justify-self: right;
  }

  html:active-view-transition-type(page-navigation) .cart-items__table-row {
    /* stylelint-disable-next-line declaration-no-important */
    view-transition-name: none !important;
  }

  .cart-items__table-row.removing {
    overflow: hidden;
    animation: removeRow calc(var(--animation-speed) * 2) var(--animation-easing) forwards;
    animation-delay: var(--animation-speed);
  }

  @keyframes removeRow {
    0% {
      height: var(--row-height);
    }

    100% {
      opacity: 0;
      height: 0;
      padding-bottom: 0;
      margin-bottom: 0;
      border-color: transparent;
    }
  }

  .cart-items__table-row.adding {
    interpolate-size: allow-keywords;
    overflow: hidden;
    animation: addRow calc(var(--animation-speed) * 2) var(--animation-easing) forwards;
  }

  @keyframes addRow {
    0% {
      opacity: 0;
      height: 0;
      padding-bottom: 0;
      margin-bottom: 0;
      border-color: transparent;
    }

    100% {
      opacity: 1;
      height: auto;
    }
  }

  .cart-items__table-row:last-child {
    padding-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    margin-bottom: var(--cart-items-gap);
  }

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

  .cart-items--dividers .cart-items__table-row:last-of-type {
    border-block-end: none;
    padding-block-end: 0;
    margin-bottom: 0;
  }

  .cart-items__details > * + *,
  .cart-items__bundle li {
    margin-block-start: var(--margin-3xs);
  }

  .cart-items__details * {
    font-size: var(--font-size--sm);
  }

  .cart-items__details a {
    text-decoration: none;
  }

  .cart-items__title-row {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
    max-width: 100%;
    min-width: 0;
  }

  .cart-items__title {
    font-size: var(--font-size--md);
    color: var(--color-foreground);
    text-transform: var(--product-title-case);
    display: block;
    margin-block-start: 0;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .cart-items__variants {
    display: block;
  }

  .cart-items__variant {
    display: inline;
  }

  .cart-items__variant dt,
  .cart-items__variant dd {
    display: inline;
    margin: 0;
  }

  .cart-items__quantity {
    grid-area: quantity;
    margin-block-start: var(--margin-xs);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity-controls > .volume-pricing-info {
    margin-inline-start: calc(-1 * var(--minimum-touch-target) - var(--gap-xs));
  }

  .cart-items__quantity .quantity-selector {
    display: inline-flex;
    font-size: var(--font-size--sm);
    height: auto;
  }

  .cart-items__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  /* Lumiere bundle: quantity display for the merged bundle row's stepper */
  .cart-items__bundle-quantity-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5em;
    font-size: var(--font-size--sm);
  }

  .cart-items__bundle {
    font-size: var(--font-size--sm);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .cart-items__media {
    grid-area: media;
    padding: 0;
  }

  .cart-items__price {
    grid-area: price;
    min-height: unset;
    min-width: var(--cart-item-price-width);
    text-align: end;
    display: block;
    font-size: var(--font-size--sm);
    line-height: var(--line-height);
  }

  .cart-items__price-unit {
    font-size: var(--font-size--xs);
    padding-block-start: var(--padding-2xs);
  }

  .cart-items__media-container {
    display: flex;
    aspect-ratio: var(--ratio);
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .cart-items__media-image {
    aspect-ratio: inherit;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
  }

  .cart-items__empty-button {
    margin-top: var(--margin-md);
    margin-inline: auto;
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  /* Error message */
  .cart-items__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    grid-area: error;
    margin-block-start: var(--margin-xs);
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity var(--drawer-animation-speed) var(--animation-easing),
      transform var(--drawer-animation-speed) var(--animation-easing);

    @starting-style {
      opacity: 0;
      transform: translateY(-0.5rem);
    }
  }

  .cart-item__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: var(--font-size--sm);
    padding-block: var(--padding-2xs);
  }

  .cart-item__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
    margin-block-start: var(--margin-3xs);
  }

  @container cart-items (min-width: 720px) {
    /* Cart page: original layout */
    .cart-items__table-row {
      --cart-item-price-width: 6rem;

      grid-template-columns: 7.5rem 1fr 1fr minmax(var(--cart-item-price-width), auto);
      grid-template-rows: min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media details error error';
    }

    .cart-items__quantity,
    .cart-items__price {
      grid-area: initial;
    }

    .cart-items__quantity {
      margin-top: 0;
    }

    .cart-items__price {
      min-height: var(--minimum-touch-target);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    /* Cart drawer: separate areas for variants and unit price */
    .cart-items__table-row--full-width-variants {
      grid-template-rows: min-content min-content min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media variants variants variants'
        'media unit_price unit_price unit_price'
        'media error error error';

      .cart-items__quantity,
      .cart-items__price {
        grid-area: initial;
      }
    }
  }

  .cart__subtotal-container,
  .cart__total-container {
    display: flex;
    flex-direction: column;
  }

  .cart__total-container {
    row-gap: var(--gap-2xs);

    &.cart__total-container--has-installments {
      row-gap: var(--gap-xs);
    }
  }

  .cart__subtotal-container:empty {
    display: none;
  }

  .cart__summary-totals {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    width: 100%;
    border-block-start: none;

    &:has(> :first-child:not(.cart__subtotal-container, .cart__total-container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

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

  .cart__subtotal-container,
  .cart__subtotal-container * {
    font-size: var(--font-size--sm);
  }

  .cart__total {
    font-weight: var(--font-weight-bold);
  }

  .cart__total-label {
    font-size: var(--font-size--sm);
  }

  .cart__total-value {
    font-size: var(--font-size--xl);

    @media screen and (max-width: 749px) {
      font-size: var(--font-size--lg);
    }
  }

  .cart__ctas {
    width: 100%;
    display: grid;
    gap: var(--checkout-button-gap);
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .cart__additional-checkout-buttons {
    width: 100%;
  }

  shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-inline-alignment: center;
    --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-primary);
    --shopify-accelerated-checkout-button-block-size: var(--height-buy-buttons);
    --shopify-accelerated-checkout-row-gap: var(--checkout-button-gap, 10px);
  }

  /* Remove animation */
  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .cart-items__remove:hover .remove-icon-top {
    transform: translate(calc(-1 * var(--icon-stroke-width)), var(--icon-stroke-width)) rotate(-15deg);
  }

  .cart-items__remove:is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  .cart-items__table-row.removing .remove-icon-bottom {
    transform: translateY(0);
  }

  .cart-items__table-row.removing .remove-icon-top {
    animation: removeButtonClickedIconTop var(--animation-speed) var(--animation-easing) forwards;
  }

  @keyframes removeButtonClickedIconTop {
    50% {
      transform: translate(0, calc(-1 * var(--icon-stroke-width)));
    }

    100% {
      transform: translate(0, 0);
    }
  }

  .cart-items__properties {
    display: block;
    margin-block-start: var(--margin-2xs);
  }

  .cart-items__property {
    display: block;
  }

  .cart-items__properties dt,
  .cart-items__properties dd {
    display: inline;
    margin: 0;
    overflow-wrap: break-word;
  }

  @media screen and (min-width: 750px) {
    .cart-items .quantity-selector {
      --quantity-selector-width: 105px;
      height: var(--button-size-md);
      width: var(--quantity-selector-width);
    }

    .cart-items .quantity-selector button {
      width: var(--button-size-md);
      height: var(--button-size-md);
    }

    .cart-items .quantity-selector input {
      max-width: calc(var(--quantity-selector-width) - var(--button-size-md) * 2);
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-items__empty-button,
      .cart__checkout-button {
        view-transition-name: cart-drawer-primary-action;

        & > .button-text {
          view-transition-name: cart-drawer-primary-action-text;
        }
      }
    }
  }

  ::view-transition-old(cart-drawer-primary-action-text),
  ::view-transition-new(cart-drawer-primary-action-text) {
    height: 100%;
    object-fit: none;
    overflow: clip;
    overflow-clip-margin: 1em;
  }

  ::view-transition-old(cart-drawer-primary-action-text) {
    animation: cart-drawer-primary-action-text var(--animation-speed) var(--animation-easing) reverse forwards;
  }
  ::view-transition-new(cart-drawer-primary-action-text) {
    animation: cart-drawer-primary-action-text var(--animation-speed) var(--animation-easing) forwards;
  }

  ::view-transition-old(cart-drawer-primary-action),
  ::view-transition-new(cart-drawer-primary-action) {
    height: 100%;
  }

  ::view-transition-group(cart-drawer-primary-action-text),
  ::view-transition-group(cart-drawer-primary-action) {
    animation-duration: var(--spring-d300-b0-duration);
    animation-timing-function: var(--spring-d300-b0-easing);
  }

  @keyframes cart-drawer-primary-action-text {
    from {
      filter: blur(3px);
      opacity: 0;
    }
    to {
      filter: none;
      opacity: 1;
    }
  }
/* END_SNIPPET:cart-products */
/* START_SNIPPET:cart-typography-styles (INDEX:169) */
.cart-primary-typography {
    font-family: var(--cart-primary-font-family);
    font-style: var(--cart-primary-font-style);
    font-weight: var(--cart-primary-font-weight);
  }

  .cart-secondary-typography {
    font-family: var(--cart-secondary-font-family);
    font-style: var(--cart-secondary-font-style);
    font-weight: var(--cart-secondary-font-weight);
  }
/* END_SNIPPET:cart-typography-styles */
/* START_SNIPPET:chat-drawer (INDEX:170) */
/* Pin the chat's mobile/desktop boundary so the theme and the chat agree
     on where standalone mode kicks in. Must stay in sync with the @media
     query below — @shopify/storefront-components reads this value once at
     init and uses it to decide when to force standalone mode. */
  shopify-chat {
    --shopify-chat-breakpoint: 768px;
  }

  shopify-chat[mode='managed'] {
    position: static;
    height: 100%;
  }

  .theme-drawer__dialog:has(shopify-chat[mode='standalone'][open]) {
    z-index: calc(var(--layer-menu-drawer) + 1);
  }

  /* Keep the panel rendered while closed so <shopify-chat>'s position-fixed
     "Ask anything" launcher stays visible. */
  .theme-drawer__dialog.chat-drawer:has(shopify-chat:defined) {
    display: flex;
  }
/* END_SNIPPET:chat-drawer */
/* START_SNIPPET:payment-terms-styles (INDEX:213) */
form.payment-terms {
    padding-top: 0.5em;
    font-size: min(0.85em, var(--font-paragraph--size));
    font-weight: var(--font-paragraph--weight);
    color: var(--color, rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text)));
  }

  .installments:not(:has(shopify-payment-terms)) {
    display: none;
  }
/* END_SNIPPET:payment-terms-styles */
/* START_SNIPPET:pills-styles (INDEX:214) */
/* Pills (used in facets and predictive search) */

  .pills__pill {
    --pills-pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5-15));

    color: var(--color-foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-sm);
    min-width: 48px;
    padding: 6px 12px;
    border-radius: var(--style-border-radius-pills);
    cursor: pointer;
    background-color: var(--pills-pill-background-color);
    transition: background-color var(--animation-speed) var(--animation-easing);

    &:hover {
      --pills-pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    }

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

  .pills__pill > .svg-wrapper {
    --close-icon-opacity: 0.4;
    --icon-stroke-width: 1px;

    color: var(--color-foreground);
  }

  .pills__pill--swatch {
    @media screen and (max-width: 749px) {
      padding-inline-start: var(--padding-sm);
    }
  }

  .pills__pill--swatch .swatch {
    margin-right: -4px;
  }

  .pills__pill--desktop-small {
    @media screen and (min-width: 750px) {
      font-size: var(--font-size--xs);
    }
  }
/* END_SNIPPET:pills-styles */
/* START_SNIPPET:predictive-search-styles (INDEX:218) */
/* Shared predictive search styles (used by both predictive-search and predictive-search-empty sections) */
  .predictive-search-dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-base);
  }

  .predictive-search-results__inner {
    flex-grow: 1;
    overflow-y: auto;
    padding-block: var(--padding-lg);
    container-type: inline-size;
    color: var(--color-foreground);
  }

  .predictive-search-results__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size--body-md);
    font-weight: 500;
    margin-block: var(--margin-sm) var(--margin-xs);
    width: 100%;
    text-transform: var(--title-case);

    &:first-of-type {
      margin-block-start: 0;
    }

    @media screen and (max-width: 749px) {
      margin-block: var(--margin-lg) var(--margin-sm);
    }
  }

  .predictive-search-results__no-results {
    animation-delay: 100ms;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  .predictive-search-results__no-results:last-child {
    margin-block: var(--margin-lg);
    text-align: center;
  }

  /* Predictive search section styles */
  input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none; /* stylelint-disable-line */
  }

  .search-action .predictive-search {
    z-index: calc(var(--layer-header-menu) + 2);
  }

  .search-action .search-modal .predictive-search {
    z-index: var(--layer-window-overlay);
  }

  .header__column--right .predictive-search-form__content-wrapper {
    right: 0;
    left: unset;
  }

  .search-modal .predictive-search-form__content-wrapper {
    width: 100%;

    @media screen and (min-width: 750px) {
      height: fit-content;
    }
  }
  .dialog-modal .predictive-search-form__header-inner {
    @media screen and (min-width: 750px) {
      border: 0;
    }
  }

  .search-modal__content .predictive-search-form__content {
    max-height: var(--modal-max-height);
  }

  .predictive-search:has(.predictive-search-dropdown) .search-input {
    outline-color: transparent;
  }

  .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;

    @media screen and (max-width: 749px) {
      border-bottom-color: transparent;
    }
  }

  .predictive-search:has(.predictive-search-dropdown[aria-expanded='true'])
    .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: var(--search-border-radius);

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

  .dialog-modal .predictive-search-form__header {
    border: 0;
    border-radius: 0;
    background-color: var(--color-background);
    border-bottom: var(--style-border-width) solid var(--color-border);

    @media screen and (min-width: 750px) {
      padding: var(--padding-2xs) var(--padding-2xs) 0;
      border-bottom: var(--search-border-width) solid var(--color-border);
    }

    @media screen and (max-width: 749px) {
      transition: box-shadow 0.2s ease;
      box-shadow: none;
    }
  }

  .search-action .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header:focus-within {
    border-radius: var(--search-border-radius) var(--search-border-radius) 0 0;
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    background-color: var(--color-background);

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

  @media screen and (max-width: 749px) {
    .dialog-modal .predictive-search__close-modal-button {
      padding-inline-start: var(--margin-xs);
      margin-inline-start: 0;
    }
  }

  .dialog-modal[open] {
    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal .predictive-search-form__header:has(.predictive-search-form__header-inner:focus-within) {
    @media screen and (min-width: 750px) {
      border-bottom-color: transparent;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal {
      .predictive-search__reset-button-icon {
        display: none;
      }

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

      .predictive-search-form__content {
        /* The parent has overflow auto, we want to prevent a double scrollbar during animation */
        max-height: 100%;
      }

      .predictive-search-form__content-wrapper {
        box-shadow: none;
      }

      .predictive-search-form__header {
        box-shadow: none;
      }

      .predictive-search-form__footer {
        padding-block: var(--padding-2xl);
      }
    }
  }

  .predictive-search-results__pill {
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-foreground);
    transition: background-color var(--animation-speed-medium) var(--animation-timing-hover),
      box-shadow var(--animation-speed-medium) var(--animation-timing-bounce),
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    margin: 2px;

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

  .predictive-search-results__pill mark {
    background-color: transparent;
    font-weight: 200;
    color: var(--color-foreground-subdued);
  }

  .predictive-search-results__pill:focus,
  .predictive-search-results__pill:hover,
  .predictive-search-results__card--query:is([aria-selected='true'], :focus-within) .predictive-search-results__pill {
    --pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));

    background-color: var(--pill-background-color);
    outline: var(--border-width-sm) solid var(--color-border);
    border: var(--border-width-sm);
    text-decoration: none;
  }

  .predictive-search-results__wrapper.predictive-search-results__wrapper-queries {
    margin-bottom: var(--margin-lg);
    padding-inline: var(--padding-xl);
    gap: var(--gap-2xs);
  }

  .predictive-search-results__card {
    --title-font-size: var(--font-size--md);
    --title-margin-block: var(--margin-xs);

    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-margin-block: calc(var(--title-font-size) + var(--title-margin-block) + var(--padding-sm))
      calc(var(--padding-xl) + var(--button-padding-block) * 2);
    transition: transform var(--animation-speed-medium) var(--animation-timing-default),
      background-color var(--animation-speed-medium) var(--animation-timing-hover),
      border-color var(--animation-speed-medium) var(--animation-timing-hover);

    &:nth-last-child(3) {
      scroll-snap-align: end;
    }

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

  .recently-viewed-wrapper .predictive-search-results__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .predictive-search-results__card--product,
  .recently-viewed-wrapper .predictive-search-results__card--product {
    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }

    &:hover {
      background-color: var(--card-bg-hover);
      border-radius: var(--product-corner-radius);
      padding: calc(var(--padding-2xs) + 2px);
      margin: calc((var(--padding-2xs) + 2px) * -1);
    }

    &:is([aria-selected='true'].keyboard-focus, &:focus-visible, &:has(.resource-card:focus-visible)) {
      background-color: var(--card-bg-hover);
      padding: calc(var(--padding-2xs) + 1px);
      margin: calc((var(--padding-2xs) + 1px) * -1);
      outline: var(--border-width-sm) solid var(--color-border);
      border-radius: calc(var(--product-corner-radius) + 1px);
      border-color: var(--card-border-focus);
    }
  }

  .predictive-search-results__card:not(.predictive-search-results__card--product) {
    padding: var(--padding-sm);
    border: var(--border-width-sm) solid var(--color-border);
    border-radius: var(--card-corner-radius);
    width: 60cqi;
    content-visibility: visible;

    @media screen and (min-width: 750px) {
      width: 27.5cqi;
    }

    &:hover {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &[aria-selected='true'].keyboard-focus {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &:active {
      transform: scale(0.97);
      transition: transform var(--animation-speed-medium) var(--animation-timing-active);
    }
  }

  @keyframes search-element-scale-in {
    0% {
      transform: scale(0.95);
      opacity: 0;
    }

    40% {
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes search-element-scale-out {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(0.95);
      opacity: 0;
    }
  }

  @keyframes search-element-slide-in-top {
    from {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }

    to {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }
  }

  @keyframes search-element-slide-out-top {
    from {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }

    to {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }
  }

  @keyframes content-slide {
    from {
      transform: translateY(var(--slide-from, 0));
      opacity: var(--slide-opacity-from, 1);
    }

    to {
      transform: translateY(var(--slide-to, 0));
      opacity: var(--slide-opacity-to, 1);
    }
  }

  .predictive-search-results__list {
    --slide-width: 27.5%;
    --slideshow-gap: var(--gap-md);

    /* Make space for the outline to be visible */
    padding-block-start: var(--border-width-sm);
  }

  .predictive-search-results__list slideshow-arrows {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .predictive-search-results__no-results,
  .predictive-search-results__wrapper,
  .predictive-search-results__wrapper-products .predictive-search-results__card {
    animation: search-element-slide-up var(--animation-speed-medium) var(--animation-timing-bounce) backwards;
  }

  slideshow-slide .resource-card {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__list,
  .predictive-search-results__wrapper {
    animation-duration: var(--animation-speed-medium);
  }

  .predictive-search-results__wrapper-queries {
    animation-delay: 50ms;
  }

  .predictive-search-results__list:nth-of-type(2) {
    animation-delay: 150ms;
  }

  .predictive-search-results__list:nth-of-type(3) {
    animation-delay: 200ms;
  }

  .predictive-search-results__list:nth-of-type(4) {
    animation-delay: 250ms;
  }

  .predictive-search-results__list:last-child {
    margin-block-end: 0;
  }

  [data-resource-type] {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__no-results.removing,
  .predictive-search-results__wrapper.removing {
    animation: search-element-slide-down var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__card.removing {
    animation: fadeOut var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__wrapper {
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  @keyframes search-element-slide-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes search-element-slide-down {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(8px);
    }
  }

  .predictive-search-results__card--query {
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
    transform-origin: center;

    &:active {
      transform: scale(0.97);
    }
  }

  /* Products list styles */
  .predictive-search-results__products {
    padding-inline: var(--padding-xl);
  }

  .recently-viewed-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    transform: translateY(0);
  }

  .recently-viewed-wrapper.removing {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .predictive-search-results__clear.button-unstyled {
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-easing);
    padding: 0;
    margin-inline-start: var(--margin-sm);

    &:hover {
      opacity: 1;
    }
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .recently-viewed-wrapper > * {
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(1) {
    animation-delay: 30ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(3) {
    animation-delay: 90ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(4) {
    animation-delay: 120ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(n + 5) {
    animation-delay: 150ms;
  }

  .predictive-search-results__wrapper-products {
    animation-delay: 50ms;
  }

  /* Resource carousel styles */
  .predictive-search-results__wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block-end: var(--padding-sm);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--padding-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-results__wrapper slideshow-slides {
    --gutter-slide-width: var(--padding-xl);

    /* Add padding to prevent hover animations from being clipped in slideshow
       15px accommodates:
       - Scale effect (9px on each side from 1.03 scale)
       - Lift effect (4px upward movement)
       - Shadow (15px spread with -5px offset)
       Using 16px for better alignment with our spacing scale */
    padding-block: var(--padding-xl);
    margin-block: calc(-1 * var(--padding-xl));
    gap: var(--gap-md);
  }

  .predictive-search-results__resource-header {
    display: flex;
    padding-inline: var(--padding-xl);
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }

  .predictive-search-results__resource-header .svg-wrapper {
    width: var(--icon-size-xs);
  }

  .predictive-search-results__wrapper-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block-end: var(--padding-sm);
    gap: var(--gap-md);
    transition: height var(--animation-speed-medium) var(--animation-easing);

    @container (min-width: 550px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search-results__wrapper-products:last-child {
    padding-block-end: var(--padding-lg);

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

  .predictive-search-results__resource-header .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header:has(slideshow-controls) .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header slideshow-controls {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }
/* END_SNIPPET:predictive-search-styles */
/* START_SNIPPET:product-media-container-styles (INDEX:227) */
:where(:not(.dialog-zoomed-gallery)) > .product-media-container {
    --slide-width: 100%;

    display: flex;
    aspect-ratio: var(--gallery-aspect-ratio, var(--media-preview-ratio));
    max-height: var(--constrained-height);
    width: var(--slide-width, 100%);

    /* Relative position needed for video and 3d models */
    position: relative;
    overflow: hidden;

    &:where(.constrain-height) {
      /* arbitrary offset value based on average theme spacing and header height */
      --viewport-offset: 400px;
      --constrained-min-height: 300px;
      --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));

      margin-right: auto;
      margin-left: auto;
    }

    @supports (--test: round(up, 100%, 1px)) {
      /* width and overflow forces children to shrink to parent width */
      --slide-width: round(up, 100%, 1px);
    }
  }

  @media screen and (max-width: 749px) {
    .product-media-container.constrain-height {
      max-height: none;
    }
  }

  @media screen and (min-width: 750px) {
    .product-media-container.constrain-height {
      --viewport-offset: var(--header-height, 100px);
      --constrained-min-height: 500px;
    }

    body:has(header-component[transparent]) .product-media-container.constrain-height {
      --viewport-offset: 0px;
    }
  }

  .product-media-container img {
    aspect-ratio: inherit;
    object-fit: contain;
  }

  .product-media-container.media-fit-contain img {
    object-position: center center;
  }

  .product-media-container.media-fit {
    --product-media-fit: cover;

    img {
      object-fit: var(--product-media-fit);
    }
  }
/* END_SNIPPET:product-media-container-styles */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:228) */
/* Product Media */
  media-gallery {
    display: block;
    width: 100%;
  }

  :where(media-gallery, .product-grid__item) {
    .media-gallery__grid {
      grid-template-columns: 1fr;
      gap: var(--image-gap);
    }
  }

  @media screen and (min-width: 750px) {
    .media-gallery--large-first-image .product-media-container:first-child,
    .media-gallery--two-column .product-media-container:only-child {
      /* First child spans 2 columns */
      grid-column: span 2;
    }
  }

  media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  zoom-dialog dialog {
    width: 100vw;
    height: 100vh;
    border: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
    opacity: 0;
    transition: opacity var(--animation-speed) var(--animation-easing);
    scrollbar-width: none;

    &[open] {
      opacity: 1;
    }

    @media (prefers-reduced-motion: no-preference) {
      scroll-behavior: smooth;
    }

    &::backdrop {
      background: transparent;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */
/* START_SNIPPET:quantity-selector-styles (INDEX:232) */
/* Quantity selector */
  .quantity-selector {
    --quantity-selector-width: 124px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);
    flex: 1 1 var(--quantity-selector-width);
    align-self: stretch;
  }

  .product-form-buttons:has(.add-to-cart-button.button-secondary) .quantity-selector {
    border-radius: var(--style-border-radius-buttons-secondary);
  }

  .quantity-selector :is(.quantity-minus, .quantity-plus) {
    /* Unset button styles */
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    flex-shrink: 0;
    color: var(--color-input-text);
  }

  .quantity-selector .quantity-minus {
    border-start-start-radius: var(--style-border-radius-inputs);
    border-end-start-radius: var(--style-border-radius-inputs);
  }

  .quantity-selector .quantity-plus {
    border-start-end-radius: var(--style-border-radius-inputs);
    border-end-end-radius: var(--style-border-radius-inputs);
  }

  .product-details .quantity-selector,
  .quick-add-modal .quantity-selector {
    border-radius: var(--style-border-radius-buttons-primary);
  }

  .product-details .quantity-selector .quantity-minus,
  .quick-add-modal .quantity-selector .quantity-minus {
    border-start-start-radius: var(--style-border-radius-buttons-primary);
    border-end-start-radius: var(--style-border-radius-buttons-primary);
  }

  .product-details .quantity-selector .quantity-plus,
  .quick-add-modal .quantity-selector .quantity-plus {
    border-start-end-radius: var(--style-border-radius-buttons-primary);
    border-end-end-radius: var(--style-border-radius-buttons-primary);
  }

  .quantity-selector .svg-wrapper {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .quantity-selector svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  :is(.quantity-minus, .quantity-plus):active .svg-wrapper {
    transform: scale(0.9);
  }

  .quantity-selector input[type='number'] {
    margin: 0;
    text-align: center;
    border: none;
    appearance: none;
    max-width: calc(var(--quantity-selector-width) - var(--minimum-touch-target) * 2);
    border-radius: var(--style-border-radius-buttons);
    color: var(--color-input-text);
    background-color: transparent;
  }

  /* Chrome, Safari, Edge, Opera */
  .quantity-selector input[type='number']::-webkit-inner-spin-button,
  .quantity-selector input[type='number']::-webkit-outer-spin-button {
    appearance: none;
  }

  /* Firefox */
  .quantity-selector input[type='number'] {
    appearance: textfield;
  }
/* END_SNIPPET:quantity-selector-styles */
/* START_SNIPPET:quick-add-modal-styles (INDEX:234) */
#quick-add-dialog {
    display: contents;
  }

  /* Inputs inside the quick-add modal use the global Input Fields settings,
     not any per-block overrides set on the product page. */
  .quick-add-modal .quantity-selector-wrapper {
    --color-input-background: inherit;
    --color-input-text: inherit;
    --color-input-text-rgb: inherit;
    --color-input-border: inherit;
    --style-border-width-inputs: inherit;
    --style-border-radius-inputs: inherit;
    --style-border-radius-buttons-primary: var(--style-border-radius-inputs);
    --style-border-radius-buttons-secondary: var(--style-border-radius-inputs);
  }

  .quick-add-modal .product-details .quantity-selector {
    border-radius: var(--style-border-radius-inputs);
  }

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

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */
/* START_SNIPPET:resource-card (INDEX:239) */
.resource-card__wrapper {
    display: block;
    height: 100%;
  }

  .resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */
/* START_SNIPPET:search-modal (INDEX:245) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
    /* Nothing upstream (layout/theme.liquid, etc.) sets a global dir="rtl" —
       every other Lumiere section sets its own `direction: rtl` locally for
       the same reason. This component's own CSS already leans on logical
       properties (margin-inline, padding-inline, inset-inline-*) almost
       everywhere, so this one declaration is most of the fix; the handful
       of remaining physical left/right rules are called out individually
       below. */
    direction: rtl;
  }

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

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

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

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

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

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

    /* Firefox */
    scrollbar-width: none;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */
/* START_SNIPPET:skip-to-content-link (INDEX:249) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */
/* START_SNIPPET:text-component-shimmer-styles (INDEX:266) */
text-component {
    --shimmer-text-color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    --shimmer-color-light: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    --shimmer-speed: 1.25s;

    display: inline-block;
    position: relative;
    transition: color var(--animation-speed-slow) ease;
    line-height: 1;

    &::after {
      /* Empty alt text: the pseudo-element is a visual shimmer overlay, not announceable content.
        Without this, VoiceOver reads attr(value) in addition to the inner text node, doubling the announcement. */
      content: attr(value) / '';
      position: absolute;
      inset: 0;
      color: transparent;
      opacity: 0;
      transition: opacity var(--animation-speed-slow) var(--animation-easing);
      pointer-events: none;
      background-image: linear-gradient(
        -85deg,
        var(--shimmer-text-color) 10%,
        var(--shimmer-color-light) 50%,
        var(--shimmer-text-color) 90%
      );
      background-clip: text;
      background-size: 200% 100%;
      background-position: 100% 0;
      place-content: center;
    }

    &[shimmer] {
      color: transparent;

      &::after {
        opacity: 1;
        animation: text-shimmer var(--shimmer-speed) infinite linear;
      }
    }
  }

  @keyframes text-shimmer {
    0% {
      background-position: 100% 0;
    }

    100% {
      background-position: -100% 0;
    }
  }
/* END_SNIPPET:text-component-shimmer-styles */
/* START_SNIPPET:theme-drawer-styles (INDEX:269) */
theme-drawer {
    display: contents;
  }

  .theme-drawer__dialog {
    --theme-drawer-padding: var(--padding-xl);

    z-index: calc(var(--layer-sticky) + var(--drawer-stack-order, 0));
    position: fixed;
    inset: unset;
    top: 0;
    right: calc(-1 * var(--theme-drawer-width, var(--sidebar-width)));
    flex-direction: column;
    width: var(--theme-drawer-width, var(--sidebar-width));
    max-width: 100%;
    max-height: none;
    height: 100dvh;
    padding: 0;
    border: none;
    border-left: var(--style-border-drawer);
    background-color: var(--color-background);
    color: var(--color-foreground);
  }

  .theme-drawer__dialog[open] {
    display: flex;
    right: 0;
  }

  .theme-drawer__dialog--opening {
    animation: drawer-slide-in var(--animation-speed) var(--animation-timing-fade-in);
  }

  .theme-drawer__dialog--opening-inline-start {
    animation: drawer-slide-in-inline-start var(--animation-speed) var(--animation-timing-fade-in);
  }

  .theme-drawer__dialog--closing {
    animation: drawer-slide-out var(--animation-speed) var(--animation-timing-fade-out) forwards;
  }

  .theme-drawer__dialog-instant {
    animation: none;
  }

  @keyframes drawer-slide-in {
    from {
      right: calc(-1 * var(--theme-drawer-width, var(--sidebar-width)));
    }
  }

  @keyframes drawer-slide-in-inline-start {
    from {
      right: calc(var(--theme-drawer-width, var(--sidebar-width)) / 2);
    }
  }

  @keyframes drawer-slide-out {
    to {
      right: calc(-1 * var(--theme-drawer-width, var(--sidebar-width)));
    }
  }

  .theme-drawer__dialog::backdrop {
    background: rgb(var(--backdrop-color-rgb) / var(--backdrop-opacity));
  }

  /* Exclude open drawers from the page navigation cross-fade so they
     stay frozen (visually unchanged) while the rest of the page transitions. */
  html:active-view-transition-type(page-navigation) .theme-drawer__dialog[open] {
    view-transition-name: theme-drawer;
  }

  ::view-transition-old(theme-drawer),
  ::view-transition-new(theme-drawer) {
    animation: none;
  }

  .theme-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--theme-drawer-padding);
    flex-shrink: 0;
    color: var(--color-foreground);
  }

  .theme-drawer__title {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin: 0;
  }

  .theme-drawer__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: var(--style-border-radius-lg);
    background-color: rgb(var(--color-foreground-rgb) / 0.1);
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    color: var(--color-foreground);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
    padding-inline: 0.5em;
    line-height: 1;
  }

  .theme-drawer__badge[data-maintain-ratio] {
    aspect-ratio: 1 / 1;
    padding-inline: 0.2em;
  }

  .theme-drawer__close-button {
    --private-button-size: 34px;
    --private-focus-ring-size: 2px;
    --private-motion-speed: 150ms;
    --private-motion-ease: cubic-bezier(0.25, 0, 0.1, 1);
    --private-border-width: 1px;
    --private-button-border-color: rgb(0, 0, 0, 0.06);
    --private-button-shadow: 0 2px 6px 0 var(--private-button-border-color);

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
    width: var(--private-button-size);
    height: var(--private-button-size);
    border-radius: var(--private-button-size);
    background-color: var(--color-background);
    outline: var(--private-focus-ring-size) solid transparent;
    outline-offset: var(--private-focus-ring-size);
    transition-property: color, outline-color, background-color;
    transition-duration: var(--private-motion-speed);
    transition-timing-function: var(--private-motion-ease);

    /* Legacy non-contrast-aware color scheme */
    --button-icon-opacity: 0.8;
    color: var(--color-foreground);
    border: var(--private-border-width) solid var(--private-button-border-color);
    box-shadow: var(--private-button-shadow);

    &:hover:not(:active) {
      /* Legacy non-contrast-aware color scheme */
      --button-icon-opacity: 1;
    }

    &:focus-visible {
      outline-color: var(--color-foreground);
    }
  }

  @supports (color: oklch(from red l c h)) {
    .theme-drawer__close-button {
      --contrast-color: oklch(from var(--color-background) clamp(0, (0.6 / l - 1) * infinity, 1) 0 0);
      --button-icon-opacity: 1;
      --private-button-border-color: color-mix(in srgb, var(--contrast-color) 6%, transparent);
      --private-button-shadow: 0 2px 6px 0 var(--private-button-border-color);

      color: color-mix(in srgb, var(--contrast-color) 50%, transparent);

      &:hover:not(:active) {
        color: color-mix(in srgb, var(--contrast-color) 70%, transparent);
      }
    }

    .theme-drawer__close-button:hover:not(:active) {
      background-color: color-mix(in srgb, var(--contrast-color) 6%, var(--color-background));
    }
  }
/* END_SNIPPET:theme-drawer-styles */
