/** Shopify CDN: Minification failed

Line 177:20 Expected identifier but found whitespace
Line 177:25 Unexpected ";"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bm-announcement (INDEX:3) */
.bm-announcement {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    height: 32px;

    display: flex;
    align-items: center;

    background: var(--bm-announcement-bg);
    color: var(--bm-announcement-text);

    overflow: hidden;

    position: relative;
    z-index: 100;
  }

  .bm-announcement__ticker {
    display: flex;
    align-items: center;

    width: max-content;

    flex-shrink: 0;

    animation:
      bm-announcement-scroll
      var(--bm-announcement-speed)
      linear
      infinite;

    will-change: transform;
  }

  .bm-announcement__item {
    display: block;
    flex-shrink: 0;

    padding-right: 70px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.065em;

    text-transform: uppercase;
    white-space: nowrap;
  }

  @keyframes bm-announcement-scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media screen and (max-width: 749px) {
    .bm-announcement__item {
      padding-right: 45px;
      font-size: 8px;
    }
  }
/* END_SECTION:bm-announcement */

/* START_SECTION:bm-header (INDEX:4) */
.bm-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    height: var(--bm-header-height);

    background: var(--bm-header-bg);
    color: var(--bm-header-text);

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);

    position: relative;
    z-index: 90;
  }


  .bm-header__inner {
    width: 100%;
    height: 100%;

    box-sizing: border-box;

    padding-left: 24px;
    padding-right: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }


  /* LOGO */

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

    color: inherit;
    text-decoration: none;

    flex-shrink: 0;
  }


  .bm-header__wordmark {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.035em;

    white-space: nowrap;
  }


.bm-header__logo-image {
  display: block;
  width: auto !important;
  height: var(--bm-logo-height) !important;
  max-height: var(--bm-logo-height) !important;
  max-width: min(50vw, 240px) !important;
  object-fit: contain;
}


  /* RIGHT SIDE */

  .bm-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 20px;
  }


  .bm-header__link {
    font-family: Arial, Helvetica, sans-serif;

    font-size: var(--bm-link-font-size);
    line-height: 1;

    font-weight: 400;

    letter-spacing: 0.015em;

    text-transform: uppercase;

    color: inherit;
  }


    text-decoration: none;
  }


  .bm-header__link:hover,
  .bm-header__icon:hover {
    opacity: 0.55;
  }


  .bm-header__icon {
    width: 17px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: inherit;
    text-decoration: none;

    position: relative;
  }


  .bm-header__cart-count {
    position: absolute;

    top: -1px;
    right: -7px;

    min-width: 12px;
    height: 12px;

    border-radius: 999px;

    background: #000;
    color: #fff;

    font-size: 7px;
    line-height: 12px;

    text-align: center;
  }


  .bm-header__menu-button {
    display: none;
  }


  @media screen and (max-width: 749px) {

    .bm-header {
      height: var(--bm-mobile-header-height);
    }


    .bm-header__inner {
      padding-left: 14px;
      padding-right: 14px;
    }


    .bm-header__nav {
      position: absolute;
      top: calc(100% + 8px);
      right: 10px;
      z-index: 5;
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      min-width: 190px;
      padding: 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      color: #333;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 180ms ease, transform 180ms ease;
    }


    .bm-header__link {
      display: block;
    }

    .bm-header__wordmark {
      font-size: 13px;
    }


  .bm-header__logo-image {
    height: var(--bm-mobile-logo-height) !important;
    max-height: var(--bm-mobile-logo-height) !important;
      max-width: min(42vw, 180px) !important;
    }


    .bm-header__menu-button {
      width: 34px;
      height: 34px;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      display: grid;
      place-items: center;
      position: relative;
      flex-shrink: 0;
    }


    .bm-header__menu-button span {
      width: 22px;
      height: 2px;
      display: block;
      border-radius: 999px;
      background: currentColor;
      grid-area: 1 / 1;
      transition: transform 180ms ease, opacity 180ms ease;
    }


    .bm-header__menu-button span:nth-child(1) {
      transform: translateY(-7px);
    }


    .bm-header__menu-button span:nth-child(3) {
      transform: translateY(7px);
    }


    .bm-header--menu-open .bm-header__nav {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }


    .bm-header--menu-open .bm-header__menu-button span:nth-child(1) {
      transform: rotate(45deg);
    }


    .bm-header--menu-open .bm-header__menu-button span:nth-child(2) {
      opacity: 0;
    }


    .bm-header--menu-open .bm-header__menu-button span:nth-child(3) {
      transform: rotate(-45deg);
    }

  }
/* END_SECTION:bm-header */

/* START_SECTION:bm-home-hero (INDEX:5) */
body.template-index {
    overflow: hidden;
    background: #fff;
    --bm-home-header-space: 122px;
  }

  body.template-index .shopify-section-group-header-group:has(.bm-announcement) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }

  body.template-index .shopify-section-group-header-group:has(.bm-header) {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 20;
  }

  body.template-index .bm-announcement,
  body.template-index .bm-header {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.14);
    opacity: 1;
    transition:
      background 200ms ease,
      color 200ms ease,
      border-color 200ms ease,
      opacity 200ms ease;
  }

  body.template-index .bm-header__logo-image {
    filter: brightness(0) invert(1);
    transition: filter 200ms ease;
  }

  body.template-index.bm-home-header-fading .bm-announcement,
  body.template-index.bm-home-header-fading .bm-header {
    opacity: 0;
  }

  body.template-index.bm-home-header-solid .bm-announcement,
  body.template-index.bm-home-header-solid .bm-header {
    background: #fff !important;
    color: #333 !important;
    border-color: rgba(0, 0, 0, 0.07);
  }

  body.template-index.bm-home-header-solid .bm-header__logo-image {
    filter: none;
  }

  body.template-index .shopify-section-group-footer-group,
  .bm-home-layer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    transition: transform 620ms cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  body.template-index .shopify-section-group-footer-group {
    z-index: 3;
    box-sizing: border-box;
    padding: calc(var(--bm-home-header-space, 122px) + 20px) 20px 20px;
    background: #fff;
    color: #333;
    transform: translate3d(0, 100%, 0);
  }

  body.template-index .shopify-section-group-footer-group footer {
    height: 100%;
    margin-top: 0;
    align-items: flex-end;
  }

  .bm-home-hero {
    background: #fff;
    z-index: 1;
  }

  .bm-home-product {
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    box-sizing: border-box;
    padding: calc(var(--bm-home-header-space, 122px) + 20px) 20px 20px;
    background: #fff;
    color: #666;
    font-family: Arial, Helvetica, sans-serif;
    transform: translate3d(0, 100%, 0);
  }

  .bm-home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .bm-home-hero__image--mobile {
    display: none;
  }

  .bm-home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--bm-home-overlay-opacity));
    pointer-events: none;
  }

  .bm-home-product__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    min-width: 0;
    padding: 24px 0 24px 0;
  }

  .bm-home-product__copy h2 {
    margin: 0;
    color: #3b3b3b;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.08;
    font-weight: 400;
    text-transform: none;
  }

  .bm-home-product__text {
    width: 100%;
    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.55;
  }

  .bm-home-product__text p {
    margin: 0;
  }

  .bm-home-product__button {
    align-self: center;
    min-width: 270px;
    padding: 13px 28px 12px;
    border: 2px solid #ff6b18;
    border-radius: 14px;
    color: #555;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .bm-home-product__media {
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #f4f4f4;
  }

  .bm-home-product__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .bm-home-hero__content {
    position: absolute;
    left: var(--bm-home-content-x);
    top: var(--bm-home-content-y);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
  }

  .bm-home-hero__eyebrow {
    margin: 0;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
  }

  .bm-home-hero__button {
    min-width: 230px;
    padding: 13px 28px 12px;
    border: 2px solid #ff6b18;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  @media screen and (max-width: 749px) {
    body.template-index {
      --bm-home-header-space: 100px;
    }

    .bm-home-product {
      grid-template-columns: minmax(0, 1fr);
      grid-template-rows: minmax(0, 46%) minmax(0, 1fr);
      gap: clamp(8px, 1.4svh, 12px);
      align-content: stretch;
      padding: calc(var(--bm-home-header-space, 100px) + 12px) 10px max(12px, env(safe-area-inset-bottom));
    }

    body.template-index .shopify-section-group-footer-group {
      padding: calc(var(--bm-home-header-space, 100px) + 10px) 10px 10px;
    }

    body.template-index .shopify-section-group-footer-group footer {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 16px;
    }

    .bm-home-product__copy {
      order: 2;
      gap: clamp(8px, 1.4svh, 12px);
      min-height: 0;
      padding: 0;
    }

    .bm-home-product__media {
      order: 1;
    }

    .bm-home-product__copy h2 {
      font-size: clamp(22px, 6vw, 28px);
      line-height: 1;
    }

    .bm-home-product__text {
      font-size: clamp(12px, 3.2vw, 13px);
      line-height: 1.35;
    }

    .bm-home-product__button {
      width: 100%;
      min-width: 0;
      padding: 11px 16px 10px;
      font-size: clamp(13px, 3.5vw, 14px);
      border-radius: 12px;
    }

    .bm-home-hero__image--desktop {
      display: none;
    }

    .bm-home-hero__image--mobile {
      display: block;
    }

    .bm-home-hero__content {
      left: 50%;
      top: 56%;
      width: calc(100% - 20px);
    }

    .bm-home-hero__eyebrow {
      font-size: 10px;
    }

    .bm-home-hero__button {
      min-width: 190px;
      padding: 12px 22px 11px;
      font-size: 14px;
      border-radius: 12px;
    }
  }
/* END_SECTION:bm-home-hero */

/* START_SECTION:bm-product-accordion-image (INDEX:6) */
.bm-product-accordion-image {
    width: calc(100% - 40px);
    height: fit-content;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    border-radius: 20px;
    background: #f6f6f6;
    box-sizing: border-box;
  }

  .bm-product-accordion-image__content {
    min-width: 0;
    align-self: center;
  }

  .bm-product-accordion-image__item {
    border-bottom: 1px solid rgba(52, 52, 52, 0.14);
    overflow: hidden;
  }

  .bm-product-accordion-image__summary {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #5d5d5d;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 2.4vw, 46px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0;
    list-style: none;
    text-transform: uppercase;
  }

  .bm-product-accordion-image__summary::-webkit-details-marker {
    display: none;
  }

  .bm-product-accordion-image__icon {
    flex: 0 0 auto;
    margin-right: 16px;
    font-size: 24px;
    line-height: 1;
  }

  .bm-product-accordion-image__item[open] .bm-product-accordion-image__icon {
    transform: rotate(45deg);
  }

  .bm-product-accordion-image__text {
    padding: 0 48px 22px 0;
    color: #5d5d5d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }

  .bm-product-accordion-image__toggle {
    margin: 12px 0 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentcolor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .bm-product-accordion-image__panel {
    height: 0;
    overflow: hidden;
    transition: height 260ms ease;
  }

  .bm-product-accordion-image__media {
    align-self: start;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
  }

  .bm-product-accordion-image__image,
  .bm-product-accordion-image__placeholder,
  .bm-product-accordion-image__placeholder svg {
    width: 100%;
    max-height: 71vh;
    display: block;
    border-radius: 20px;
  }

  .bm-product-accordion-image__image {
    height: auto;
    object-fit: cover;
    object-position: center center;
  }

  .bm-product-accordion-image__placeholder,
  .bm-product-accordion-image__placeholder svg {
    min-height: 320px;
    background: #e9e9e9;
  }

  @media screen and (max-width: 1199px), screen and (hover: none) and (pointer: coarse) {
    .bm-product-accordion-image {
      width: calc(100% - 20px);
      margin-top: 10px;
      padding: 10px 10px 20px;
      grid-template-columns: 1fr;
    }

    .bm-product-accordion-image__media {
      order: -1;
    }

    .bm-product-accordion-image__summary {
      min-height: 58px;
      font-size: 28px;
    }

    .bm-product-accordion-image__text {
      padding-right: 0;
    }

    .bm-product-accordion-image__image,
    .bm-product-accordion-image__placeholder,
    .bm-product-accordion-image__placeholder svg {
      max-height: none;
    }
  }
/* END_SECTION:bm-product-accordion-image */

/* START_SECTION:bm-product-image-text (INDEX:7) */
.bm-product-image-text {
    width: calc(100% - 40px);
    height: 85vh;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    border-radius: 20px;
    background: #f6f6f6;
    box-sizing: border-box;
  }

  .bm-product-image-text__media {
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .bm-product-image-text--image-right .bm-product-image-text__media {
    order: 2;
  }

  .bm-product-image-text--image-right .bm-product-image-text__content {
    order: 1;
  }

  .bm-product-image-text__image,
  .bm-product-image-text__placeholder,
  .bm-product-image-text__placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
  }

  .bm-product-image-text__image {
    object-fit: cover;
    object-position: center center;
  }

  .bm-product-image-text__placeholder,
  .bm-product-image-text__placeholder svg {
    min-height: 320px;
    background: #e9e9e9;
  }

  .bm-product-image-text__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4.2vw, 76px);
    color: #6b6b6b;
    font-family: Arial, Helvetica, sans-serif;
  }

  .bm-product-image-text__content h2 {
    max-width: 760px;
    margin: 0 0 clamp(28px, 5vh, 56px);
    color: #ff6b18;
    font-size: clamp(28px, 2.15vw, 42px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .bm-product-image-text__items {
    display: grid;
    width: 100%;
    max-width: 760px;
    gap: 0;
    border-top: 1px solid rgba(58, 58, 58, 0.16);
  }

  .bm-product-image-text__item {
    display: grid;
    grid-template-columns: minmax(128px, 0.38fr) minmax(0, 1fr);
    gap: clamp(18px, 2.4vw, 42px);
    align-items: start;
    padding: clamp(15px, 2.1vh, 22px) 0;
    border-bottom: 1px solid rgba(58, 58, 58, 0.16);
  }

  .bm-product-image-text__item h3 {
    margin: 0;
    color: #696969;
    font-size: clamp(15px, 1.08vw, 21px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .bm-product-image-text__text {
    color: #737373;
    font-size: clamp(15px, 1.08vw, 21px);
    line-height: 1.32;
    text-align: right;
  }

  .bm-product-image-text__text p {
    margin: 0;
  }

  @media screen and (max-width: 1199px), screen and (hover: none) and (pointer: coarse) {
    .bm-product-image-text {
      width: calc(100% - 20px);
      height: auto;
      margin-top: 10px;
      padding: 10px;
      grid-template-columns: 1fr;
    }

    .bm-product-image-text__media {
      height: auto;
      order: -1;
    }

    .bm-product-image-text--image-right .bm-product-image-text__media {
      order: -1;
    }

    .bm-product-image-text__content {
      order: 0;
    }

    .bm-product-image-text--image-right .bm-product-image-text__content {
      order: 0;
    }

    .bm-product-image-text__image,
    .bm-product-image-text__placeholder,
    .bm-product-image-text__placeholder svg {
      height: auto;
    }

    .bm-product-image-text__content {
      padding: 28px 10px 34px;
    }

    .bm-product-image-text__content h2 {
      max-width: none;
      margin-bottom: 24px;
      font-size: 28px;
      line-height: 1.08;
    }

    .bm-product-image-text__items {
      max-width: none;
    }

    .bm-product-image-text__item {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 16px 0;
    }

    .bm-product-image-text__item h3 {
      font-size: 16px;
    }

    .bm-product-image-text__text {
      font-size: 16px;
      text-align: left;
    }
  }
/* END_SECTION:bm-product-image-text */

/* START_SECTION:collection (INDEX:9) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:10) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:11) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:12) */
.bm-footer {
    width: 100%;
    padding: clamp(42px, 6vw, 92px) 20px;
    background: #ffffff;
    color: #333333;
    box-sizing: border-box;
  }

  .bm-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
    gap: 40px;
    align-items: start;
  }

  .bm-footer__links {
    display: grid;
    justify-items: start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.35;
  }

  .bm-footer a {
    color: currentColor;
    text-decoration: none;
  }

  .bm-footer a:hover {
    opacity: 0.68;
  }

  .bm-footer__right {
    display: grid;
    justify-items: center;
    gap: 14px;
  }

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

  .bm-footer__newsletter input {
    width: min(240px, 50vw);
    height: 48px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: #eeeeee;
    color: #333333;
    font: inherit;
    box-sizing: border-box;
  }

  .bm-footer__newsletter button {
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: #333333;
    color: #ffffff;
    font: inherit;
    cursor: pointer;
  }

  .bm-footer__localization {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    align-items: center;
  }

  .bm-footer__localization::before {
    content: "";
    width: 1px;
    height: 18px;
    margin: 0 2px;
    background: rgba(51, 51, 51, 0.2);
  }

  .bm-footer__localization label {
    display: block;
  }

  .bm-footer__localization-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .bm-footer__localization select {
    appearance: none;
    height: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #333333;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .bm-footer__localization select:hover {
    opacity: 0.68;
  }

  .bm-footer__utility {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 34px;
  }

  .bm-footer__socials {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .bm-footer__socials a,
  .bm-footer__socials svg {
    width: 32px;
    height: 32px;
    display: block;
  }

  .bm-footer__socials svg {
    fill: currentColor;
  }

  .bm-footer__copyright {
    margin: 0;
    color: #111111;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .bm-footer__payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 320px;
    min-height: 24px;
    margin-top: 2px;
  }

  .bm-footer__payment svg {
    width: auto;
    height: 22px;
  }

  @media screen and (max-width: 749px) {
    .bm-footer {
      padding: 36px 10px 42px;
    }

    .bm-footer__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .bm-footer__links,
    .bm-footer__right {
      justify-items: start;
    }

    .bm-footer__newsletter {
      width: 100%;
    }

    .bm-footer__newsletter input {
      width: 100%;
      min-width: 0;
    }

    .bm-footer__localization {
      justify-content: flex-start;
    }

    .bm-footer__utility {
      justify-content: flex-start;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:13) */
header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  header svg {
    width: 2rem;
  }
  header .header__menu,
  header .header__icons {
    display: flex;
    gap: 1rem;
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:14) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

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

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:page (INDEX:15) */
.bm-page {
    width: 100%;
    padding: clamp(56px, 8vw, 112px) 20px;
    background: #ffffff;
    color: #333333;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .bm-page__shell {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .bm-page__shell--contact {
    width: min(100%, 1280px);
  }

  .bm-page__header {
    margin: 0 0 22px;
    text-align: center;
  }

  .bm-page__eyebrow {
    display: none;
    margin: 0;
    color: #ff7721;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .bm-page__header h1 {
    max-width: none;
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
  }

  .bm-page__intro {
    max-width: 640px;
    margin: 14px auto 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.45;
  }

  .bm-page__intro a {
    color: #333333;
    text-decoration-color: #ff7721;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  .bm-page__content {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-sizing: border-box;
  }

  .bm-page__rte {
    max-width: none;
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.58;
  }

  .bm-page__rte > h1:first-child {
    display: none;
  }

  .bm-page__rte h1,
  .bm-page__rte h2,
  .bm-page__rte h3,
  .bm-page__rte h4 {
    margin: 34px 0 12px;
    color: #111111;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
  }

  .bm-page__rte h1 {
    font-size: 34px;
  }

  .bm-page__rte h2 {
    padding-top: 0;
    border-top: 0;
    font-size: 18px;
  }

  .bm-page__rte h3 {
    font-size: 16px;
  }

  .bm-page__rte h4 {
    font-size: 17px;
  }

  .bm-page__rte p,
  .bm-page__rte ul,
  .bm-page__rte ol,
  .bm-page__rte table,
  .bm-page__rte blockquote {
    margin: 0 0 18px;
  }

  .bm-page__rte p:empty {
    display: none;
  }

  .bm-page__rte strong,
  .bm-page__rte b {
    color: #111111;
    font-weight: 700;
  }

  .bm-page__rte a {
    color: #333333;
    text-decoration-color: #ff7721;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  .bm-page__rte ul,
  .bm-page__rte ol {
    padding-left: 1.4em;
  }

  .bm-page__rte li {
    margin: 0 0 8px;
  }

  .bm-page__rte table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
  }

  .bm-page__rte th,
  .bm-page__rte td {
    padding: 12px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.12);
    text-align: left;
    vertical-align: top;
  }

  .bm-page__rte blockquote {
    padding: 16px 20px;
    border-left: 1px solid rgba(51, 51, 51, 0.22);
    border-radius: 0;
    background: transparent;
  }

  .bm-page__rte > *:first-child {
    margin-top: 0;
  }

  .bm-page__rte > *:last-child {
    margin-bottom: 0;
  }

  .bm-contact {
    width: 100%;
  }

  .bm-contact__copy {
    width: min(100%, 760px);
    margin: 0 auto 28px;
    text-align: center;
  }

  .bm-contact__form {
    display: grid;
    gap: 18px;
  }

  .bm-contact__field {
    display: grid;
    gap: 8px;
  }

  .bm-contact__field label {
    color: #686868;
    font-size: 12px;
    line-height: 1.2;
  }

  .bm-contact__field input,
  .bm-contact__field textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #f7f7f7;
    color: #333333;
    font: inherit;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
  }

  .bm-contact__field input {
    height: 46px;
    padding: 0 14px;
  }

  .bm-contact__field textarea {
    min-height: 210px;
    padding: 14px;
    resize: vertical;
  }

  .bm-contact__field input:focus,
  .bm-contact__field textarea:focus {
    border-color: #bdbdbd;
    background: #ffffff;
  }

  .bm-contact__submit {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 8px;
    background: #333333;
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .bm-contact__submit:hover {
    background: #ff7721;
  }

  .bm-contact__success,
  .bm-contact__errors {
    margin: 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .bm-contact__success {
    background: #f1f7ef;
    color: #31572c;
  }

  .bm-contact__errors {
    background: #fff1ec;
    color: #8a2d12;
  }

  @media screen and (max-width: 749px) {
    .bm-page {
      padding: 42px 10px 48px;
    }

    .bm-page__header {
      margin-bottom: 18px;
    }

    .bm-page__header h1 {
      font-size: 34px;
    }

    .bm-page__content {
      padding: 0;
      border-radius: 0;
    }

    .bm-page__rte {
      font-size: 15px;
      line-height: 1.58;
    }

    .bm-page__intro {
      font-size: 14px;
    }

    .bm-contact__form {
      gap: 14px;
    }

    .bm-contact__field textarea {
      min-height: 180px;
    }

    .bm-page__rte h2 {
      margin-top: 28px;
      padding-top: 20px;
      font-size: 22px;
    }

    .bm-page__rte h3 {
      font-size: 18px;
    }
  }
/* END_SECTION:page */

/* START_SECTION:product (INDEX:17) */
.product-page {
    width: 100vw;
    height: 71vh;
    max-height: 71vh;
    margin-left: calc(50% - 50vw);
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 72px);
    align-items: center;
    box-sizing: border-box;
  }

  .product-media {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-height: calc(71vh - 40px);
  }

  .product-media__stage {
    position: relative;
    overflow: hidden;
    background: transparent;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  .product-media__track {
    height: 100%;
    display: flex;
    transition: transform 320ms ease;
    will-change: transform;
  }

  .product-media__slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .product-media__asset,
  .product-media__slide img,
  .product-media__slide video,
  .product-media__slide iframe,
  .product-media__slide model-viewer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border: 0;
    transform: translate(-50%, -50%);
    transform-origin: center center;
  }

  .product-media__slide video {
    background: #000;
  }

  .product-media__slide[data-media-type='image'] img {
    object-position: center center;
  }

  .product-media__slide[data-media-type='video'] video {
    border-radius: 20px;
  }

  .product-media__control {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: #000;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .product-media__control--previous {
    left: 14px;
  }

  .product-media__control--next {
    right: 14px;
  }

  .product-media__thumbnails {
    position: absolute;
    left: clamp(16px, 3.5vw, 56px);
    bottom: 24px;
    z-index: 3;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 56px;
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    padding: 0;
  }

  .product-media__thumbnail {
    position: relative;
    aspect-ratio: 1;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
  }

  .product-media__thumbnail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .product-media__badge {
    position: absolute;
    left: 6px;
    bottom: 6px;
    padding: 3px 5px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 9px;
    line-height: 1;
    text-transform: uppercase;
  }

  .product-app-blocks {
    width: calc(100% - 40px);
    margin: 20px auto 0;
    box-sizing: border-box;
  }

  .product-app-block {
    width: 100%;
  }

  .product-info,
  .product-form {
    font-family: Arial, Helvetica, sans-serif;
  }

  .product-purchase {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    min-height: 0;
    max-height: calc(71vh - 40px);
    box-sizing: border-box;
    padding: 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #343434;
    justify-self: stretch;
    overflow: hidden;
  }

  .product-purchase__inner {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    background: #f5f5f5;
    box-sizing: border-box;
  }

  .product-info h1 {
    margin: 0;
    font-size: clamp(30px, 2.4vw, 44px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: 0;
  }

  .product-info__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
    margin: 0 0 12px;
  }

  .product-info__reviews {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 20px;
    line-height: 1;
    transform: none;
    margin-left: auto;
  }

  .product-info__reviews .jdgm-widget {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-info__reviews .jdgm-prev-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle;
  }

  .product-info__reviews .jdgm-prev-badge__stars,
  .product-info__reviews .jdgm-prev-badge__text {
    display: inline-flex !important;
    align-items: center;
    margin: 0 !important;
    line-height: 1;
  }

  .product-info__reviews .jdgm-prev-badge__text {
    transform: translateY(1px);
  }

  .product-info div {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-info div {
    margin-bottom: 18px;
  }

  .product-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .product-details__finish {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
  }

  .product-details__item {
    display: flex;
    gap: 6px;
    min-width: 0;
  }

  .product-details__value {
    color: #343434;
  }

  .product-form {
    width: 100%;
  }

  .product-form form {
    display: grid;
    grid-template-columns: 104px minmax(220px, 1fr);
    align-items: center;
    gap: 10px;
  }

  .product-form select,
  .product-form input[type='number'],
  .product-form input[type='submit'] {
    min-height: 54px;
    border: 1px solid #000;
    border-radius: 16px;
    background: #fff;
    color: #000;
    padding: 0 12px;
    font: inherit;
  }

  .product-form select {
    flex: 1 1 220px;
    min-width: 0;
  }

  .product-form input[type='number'] {
    width: 104px;
    border: 0;
    background: #f7f7f7;
    text-align: center;
  }

  .product-form input[type='submit'] {
    flex: 1 1 auto;
    min-width: 220px;
    border: 0;
    background: #ff6b18;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;

    
  }

  .product-form__shipping {
    grid-column: 2;
    margin: -2px 0 0;
    color: rgba(52, 52, 52, 0.62);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }

  .product-form .shopify-payment-button {
    display: none;
  }

  .product-sticky-buy {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 38vw);
    gap: 16px;
    align-items: center;
    min-height: 72px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(246, 246, 246, 0.94);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .product-sticky-buy--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .product-sticky-buy__product {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
  }

  .product-sticky-buy__image {
    width: 42px;
    height: 52px;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .product-sticky-buy__title {
    min-width: 0;
    overflow: hidden;
    color: #666;
    font-size: clamp(18px, 1.6vw, 30px);
    font-weight: 700;
    letter-spacing: 0;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .product-sticky-buy__form form {
    margin: 0;
  }

  .product-sticky-buy__form input[type='submit'] {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: #ff6b18;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: clamp(14px, 1.1vw, 20px);
    text-transform: uppercase;
    font-weight: 700;

  }

  @media screen and (max-width: 1199px), screen and (hover: none) and (pointer: coarse) {
    .product-page {
      width: min(100%, 1440px);
      height: auto;
      max-height: none;
      margin: 0 auto;
      padding: 10px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      overflow: visible;
    }

    .product-media {
      position: static;
      z-index: auto;
      width: auto;
      height: auto;
      max-height: none;
      transform: none;
    }

    .product-media__stage {
      aspect-ratio: 3 / 4;
      height: auto;
      touch-action: pan-y;
    }

    .product-media__thumbnails {
      position: static;
      margin-top: 12px;
      grid-auto-columns: 64px;
      max-width: 100%;
    }

    .product-purchase {
      position: static;
      width: auto;
      min-width: 0;
      max-height: none;
      padding: 0;
      background: transparent;
      transform: none;
    }

    .product-purchase__inner {
      width: 100%;
      max-width: none;
      padding: 0;
      border-radius: 0;
      background: transparent;
    }

    .product-info h1 {
      font-size: 40px;
      line-height: 1.04;
    }

    .product-info__title-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      margin-bottom: 0;
      line-height: 1;
    }

    .product-info__reviews {
      justify-content: flex-start;
      margin-left: 0;
      min-height: 0;
      font-size: 13px;
      line-height: 1;
    }

    .product-info__reviews .jdgm-prev-badge {
      gap: 2px;
      min-height: 0 !important;
    }

    .product-info__reviews .jdgm-star {
      font-size: 13px;
      line-height: 1 !important;
    }

    .product-info__reviews .jdgm-prev-badge__text {
      font-size: 13px;
      line-height: 1 !important;
    }

    .product-info div {
      margin-bottom: 10px;
      font-size: 15px;
      line-height: 1.42;
    }

    .product-app-blocks {
      width: calc(100% - 20px);
      margin-top: 10px;
    }

    .product-form {
      grid-column: auto;
    }

    .product-details {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 12px;
    }

    .product-details__finish {
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .product-form form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .product-form input[type='number'],
    .product-form input[type='submit'] {
      min-height: 54px;
      border-radius: 16px;
    }

    .product-form input[type='number'] {
      width: 100%;
    }

    .product-form__shipping {
      grid-column: auto;
      margin-top: 0;
    }

    .product-sticky-buy {
      left: 10px;
      right: 10px;
      bottom: 24px;
      grid-template-columns: minmax(0, 1fr);
      gap: 8px;
      min-height: 0;
      padding: 10px;
    }

    .product-sticky-buy__product {
      gap: 10px;
    }

    .product-sticky-buy__image {
      width: 30px;
      height: 38px;
    }

    .product-sticky-buy__title {
      font-size: 16px;
    }

    .product-sticky-buy__form input[type='submit'] {
      min-height: 48px;
      font-size: 14px;
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:18) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:19) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:20) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:bm-cart-drawer (INDEX:21) */
.bm-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
  }

  .bm-cart-drawer--open {
    opacity: 1;
    pointer-events: auto;
  }

  .bm-cart-drawer__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    cursor: pointer;
  }

  .bm-cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(47vw, 720px);
    height: 100%;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
    box-sizing: border-box;
    padding: 24px 28px;
    background: #f5f4f1;
    color: #343434;
    transform: translateX(100%);
    transition: transform 420ms cubic-bezier(0.65, 0, 0.35, 1);
  }

  .bm-cart-drawer--open .bm-cart-drawer__panel {
    transform: translateX(0);
  }

  .bm-cart-drawer__header {
    position: relative;
    min-height: 44px;
    display: grid;
    place-items: center;
  }

  .bm-cart-drawer__count {
    margin: 0;
    font-size: 24px;
    line-height: 1;
  }

  .bm-cart-drawer__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .bm-cart-drawer__close span {
    position: absolute;
    top: 21px;
    left: 9px;
    width: 26px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
  }

  .bm-cart-drawer__close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .bm-cart-drawer__shipping {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(103, 98, 92, 0.12);
    text-align: center;
  }

  .bm-cart-drawer__shipping-track {
    width: min(440px, 80%);
    height: 6px;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 1px solid rgba(103, 98, 92, 0.45);
    border-radius: 999px;
    background: transparent;
  }

  .bm-cart-drawer__shipping-track span {
    display: block;
    width: 0%;
    height: 100%;
    background: #78736d;
    transition: width 240ms ease;
  }

  .bm-cart-drawer__shipping p {
    margin: 0;
    font-size: 18px;
  }

  .bm-cart-drawer__items {
    min-height: 0;
    overflow-y: auto;
  }

  .bm-cart-drawer__item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(103, 98, 92, 0.12);
  }

  .bm-cart-drawer__item img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f5f4f1;
    object-fit: contain;
  }

  .bm-cart-drawer__item-title,
  .bm-cart-drawer__item-price {
    margin: 0;
    color: #343434;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
  }

  .bm-cart-drawer__item-variant {
    margin: 6px 0 12px;
    font-size: 12px;
  }

  .bm-cart-drawer__quantity {
    width: fit-content;
    display: grid;
    grid-template-columns: 28px 40px 28px;
    align-items: center;
    min-height: 28px;
    border: 1px solid rgba(103, 98, 92, 0.56);
    border-radius: 999px;
    overflow: hidden;
  }

  .bm-cart-drawer__quantity button {
    min-height: 28px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .bm-cart-drawer__quantity span {
    font-size: 12px;
    text-align: center;
  }

  .bm-cart-drawer__upsell {
    padding: 22px 0 18px;
  }

  .bm-cart-drawer__upsell-heading {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
  }

  .bm-cart-drawer__upsell-card {
    width: 100%;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    cursor: pointer;
    text-align: left;
  }

  .bm-cart-drawer__upsell-media img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f5f4f1;
    object-fit: contain;
  }

  .bm-cart-drawer__upsell-copy {
    display: grid;
    gap: 4px;
  }

  .bm-cart-drawer__upsell-copy strong {
    font-size: 19px;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .bm-cart-drawer__upsell-action {
    padding: 10px 18px;
    border-radius: 999px;
    background: #ff7721;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
  }

  .bm-cart-drawer__footer {
    padding-top: 16px;
  }

  .bm-cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 24px;
    line-height: 1.1;
  }

  .bm-cart-drawer__note {
    margin: 8px 0 14px;
    font-size: 14px;
  }

  .bm-cart-drawer__checkout {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ff7721;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
  }

  @media screen and (max-width: 749px) {
    .bm-cart-drawer__panel {
      width: 100%;
      padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    }

    .bm-cart-drawer__count,
    .bm-cart-drawer__subtotal {
      font-size: 22px;
    }

    .bm-cart-drawer__item {
      grid-template-columns: 56px minmax(0, 1fr) auto;
      gap: 12px;
    }

    .bm-cart-drawer__item-title,
    .bm-cart-drawer__item-price {
      font-size: 16px;
    }

    .bm-cart-drawer__upsell-heading {
      font-size: 22px;
    }

    .bm-cart-drawer__upsell-card {
      grid-template-columns: 48px minmax(0, 1fr);
    }

    .bm-cart-drawer__upsell-action {
      grid-column: 1 / -1;
      text-align: center;
    }
  }
/* END_SNIPPET:bm-cart-drawer */

/* START_SNIPPET:image (INDEX:23) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */