/** Shopify CDN: Minification failed

Line 779:2 Unexpected "}"

**/
/* START_SECTION:new-pdp-img-text-v2 (INDEX:73) */
/* ============================================================
     new-pdp ENGINEERED PERFORMANCE — Section Styles
     BEM: .new-pdp-engineered__[element]
     Reference width: 1440px | Mobile-first
     ============================================================ */

  .new-pdp-engineered {
    background-color: var(--bg, #ffffff);
    padding-top: var(--pt-mob, 48px);
    padding-bottom: var(--pb-mob, 48px);
  }

  /* ── INNER LAYOUT ────────────────────────────────────────── */

  .new-pdp-engineered__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3.47vw, 50px);
  }

  /* ── LEFT — MEDIA ────────────────────────────────────────── */

  .new-pdp-engineered__figure {
    margin: 0;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

  .new-pdp-engineered__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .new-pdp-engineered__img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eeebe6;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .new-pdp-engineered__placeholder-svg {
    width: 50%;
    height: auto;
    opacity: 0.25;
  }

  /* ── VIDEO ───────────────────────────────────────────────── */

  .new-pdp-engineered__video-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
  }

  .new-pdp-engineered__video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .new-pdp-engineered__sound-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
  }

  .new-pdp-engineered__sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
  }

  .new-pdp-engineered__sound-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Default state = muted: show the muted icon, hide unmuted */
  .new-pdp-engineered__sound-btn .new-pdp-engineered__icon-unmuted { display: none; }
  .new-pdp-engineered__sound-btn .new-pdp-engineered__icon-muted   { display: inline-block; }

  /* When unmuted: swap icons */
  .new-pdp-engineered__video-wrap.is-unmuted .new-pdp-engineered__icon-muted   { display: none; }
  .new-pdp-engineered__video-wrap.is-unmuted .new-pdp-engineered__icon-unmuted { display: inline-block; }

  @media (min-width: 768px) {
    .new-pdp-engineered__sound-btn {
      right: 20px;
      bottom: 20px;
      width: 44px;
      height: 44px;
    }
    .new-pdp-engineered__sound-btn svg {
      width: 20px;
      height: 20px;
    }
  }

  /* ── RIGHT — CONTENT ─────────────────────────────────────── */

  .new-pdp-engineered__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Heading */
  .new-pdp-engineered__heading {
    margin: 0 0 clamp(20px, 2.22vw, 32px);
    font-family: var(--font-heading-family, 'Inter', sans-serif);
    font-weight: 700;
    font-style: normal;
    font-size: clamp(30px, 3.13vw, 45px) !important;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--heading-color, #1a1a1a);
    max-width: 700px;
    /* font-family: Satoshi-Black !important; */
  }

  /* Body paragraph */
  .new-pdp-engineered__body {
    margin: 0 0 clamp(16px, 2.08vw, 30px);
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: clamp(22px, 2.06vw, 29.7px);
    letter-spacing: 0;
    color: var(--body-color, #767676);
    max-width: 650px;
  }

  /* Closing line */
  .new-pdp-engineered__closing {
    margin: 0 0 clamp(24px, 2.78vw, 40px);
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: clamp(22px, 2.06vw, 29.7px);
    letter-spacing: 0;
    color: var(--closing-color, #767676);
    max-width: 590px;
  }

  /* Optional CTA button */
  .new-pdp-engineered__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 48px;
    padding: 0 28px;
    background-color: var(--heading-color, #1a1a1a);
    color: #ffffff;
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 500;
    font-size: clamp(13px, 1.11vw, 16px);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .new-pdp-engineered__btn:hover {
    opacity: 0.8;
  }

  /* ── BREAKPOINT: 768px ───────────────────────────────────── */

  @media (min-width: 768px) {
    .new-pdp-engineered {
      padding-top: var(--pt-desk, 80px);
      padding-bottom: var(--pb-desk, 80px);
    }
  }

  /* ── BREAKPOINT: 991px — two-column ─────────────────────── */

  @media (min-width: 991px) {
    .new-pdp-engineered__inner {
      flex-direction: row;
      align-items: stretch;
      gap: clamp(40px, 4.17vw, 80px);
    }

    .new-pdp-engineered__figure {
      flex: 0 0 clamp(420px, 59vw, 850px);
      max-width: clamp(420px, 59vw, 850px);
    }

    .new-pdp-engineered__img,
    .new-pdp-engineered__video {
      height: 100%;
      object-fit: cover;
    }

    .new-pdp-engineered__video-wrap {
      height: 100%;
    }

    .new-pdp-engineered__img-placeholder {
      height: 100%;
      aspect-ratio: unset;
    }

    .new-pdp-engineered__content {
      flex: 1 1 0;
      min-width: 0;
      padding-top: clamp(24px, 2.22vw, 32px);
    }
  }

  @media (max-width: 1099px) {
    .new-pdp-engineered__closing { margin: 0; }
  }
  @media (max-width: 767px) {
    .new-pdp-engineered__heading {
      padding: 0 !important;
      margin: 0 0 10px;
      line-height: 1.2;
    }
  }
/* END_SECTION:new-pdp-img-text-v2 */
/* START_SECTION:pdp-img-text (INDEX:78) */
/* ============================================================
     new-pdp DECK KIT — Section Styles
     BEM: .new-pdp-deck-kit__[element]
     Reference width: 1440px
     ============================================================ */

  .new-pdp-deck-kit {
    background-color: var(--bg, #ffffff);
    padding-top: var(--pt-mob, 48px);
    padding-bottom: var(--pb-mob, 48px);
  }

  /* ── INNER LAYOUT ────────────────────────────────────────── */

  .new-pdp-deck-kit__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* ── LEFT CONTENT COLUMN ─────────────────────────────────── */

  .new-pdp-deck-kit__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* ── HEADER ─────────────────────────────────────────────── */

  .new-pdp-deck-kit__header {

    margin-bottom: clamp(24px, 3.47vw, 50px);
  }

  .new-pdp-deck-kit__heading {
    margin: 0 0 clamp(10px, 1.11vw, 16px);
    font-weight: 700;
    /* font-family: Satoshi-Black !important; */
    font-style: normal;
    font-size: clamp(30px, 2.34375vw, 45px) !important;
    line-height: 1.1;
    letter-spacing: 0px;
    color: var(--heading-color, #1a1a1a);
  }

  .new-pdp-deck-kit__subtext {
    margin: 18px 0 0 !important;
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: clamp(22px, 2.06vw, 29.7px);
    color: var(--subtext-color, #767676);
  }

  /* ── CHECKLIST ───────────────────────────────────────────── */

  .new-pdp-deck-kit__list {
    list-style: none;
    margin: 0;
    padding: 0 0 0;
    width: 100%;    max-width: 490px;
  }

  .new-pdp-deck-kit__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 9px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--divider-color, #e0e0d8);
  }

  .new-pdp-deck-kit__list-item--last {
    border-bottom: none;
  }

  /* Check badge */
  .new-pdp-deck-kit__check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: var(--check-bg, #2b4345);
    color: var(--check-color, #ffffff);
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: 11px;
    line-height: 1;
  }

  .new-pdp-deck-kit__item-text {
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(13px, 0.97vw, 14px);
    line-height: 22.4px;
    color: var(--item-color, #4a4a4a);
  }

  /* ── CLOSING LINE ────────────────────────────────────────── */

  .new-pdp-deck-kit__closing {
    margin: clamp(24px, 2.78vw, 40px) 0 0;
    /* padding-left: clamp(0px, 3.47vw, 50px); */
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: clamp(22px, 2.06vw, 29.7px);
    color: var(--closing-color, #767676);
  }

  /* ── IMAGE COLUMN ────────────────────────────────────────── */

  .new-pdp-deck-kit__figure {
    margin: 0;
    width: 100%;
    flex-shrink: 0;
  }

  .new-pdp-deck-kit__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .new-pdp-deck-kit__img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f0ede8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .new-pdp-deck-kit__placeholder-svg {
    width: 60%;
    height: auto;
    opacity: 0.25;
  }

  /* ── BREAKPOINT: 768px ───────────────────────────────────── */

  @media (min-width: 768px) {
    .new-pdp-deck-kit {
      padding-top: var(--pt-desk, 80px);
      padding-bottom: var(--pb-desk, 80px);
    }
  }
  @media (min-width: 768px) {
    .template-product-new-product .new-pdp-deck-kit__closing {margin: clamp(4px,2.78vw,40px) 0 0;}
    .template-product-new-product .new-pdp-deck-kit__inner {gap: 20px;}
  }

  /* ── BREAKPOINT: 991px — two-column ─────────────────────── */

  @media (min-width: 991px) {
    .new-pdp-deck-kit__inner {
      flex-direction: row;
      align-items: flex-start;
      gap: clamp(32px, 3.47vw, 50px);
    }

    .new-pdp-deck-kit__content {
      flex: 0 0 auto;
      width: clamp(320px, 31.25vw, 600px);
    }

    .new-pdp-deck-kit__figure {
      flex: 1 1 0;
      min-width: 0;
      align-self: stretch;
    }

    .new-pdp-deck-kit__img {
      height: 100%;
      object-fit: cover;
    }

    .new-pdp-deck-kit__img-placeholder {
      height: 100%;
      aspect-ratio: unset;
    }
  }
  @media (min-width: 768px) {
    .template-product-new-product .new-pdp-deck-kit__heading {margin: 0;}
  }
  @media (max-width: 749px) {
    .new-pdp-deck-kit__subtext {margin: 16px 0 0 !important;}
    .new-pdp-deck-kit__heading {margin: 0;padding: 0 !important;}
    .new-pdp-deck-kit__header {margin-bottom: 10px;}
    .new-pdp-deck-kit__closing {margin: 10px 0 !important;}
    .new-pdp-deck-kit__inner {gap: 10px;}
  }
/* END_SECTION:pdp-img-text */
/* START_SECTION:pdp-parallax (INDEX:79) */
/* ============================================================
   blockdev VIDEO CAPTION OVERLAY — Section Styles
   BEM: .blockdev-vid-caption__[element]
   Reference width: 1440px | Mobile-first
   ============================================================ */

.blockdev-vid-caption {
  position: relative;
  width: 100%;
  min-height: var(--min-height-mob, 300px);
  overflow: hidden;
  /* background-color: #000; */
  padding-top: var(--pt-mob, 0px);
  padding-bottom: var(--pb-mob, 0px);
  display: flex;
  flex-direction: column;
}

.page-width.blockdev-vid-caption__body{max-width: 2000px;width: 100%;  padding-top: clamp(40px, 5.56vw, 80px);
  padding-bottom: clamp(32px, 3.33vw, 48px);}

.blockdev-vid-caption__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blockdev-vid-caption__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--video-opacity, 0.88);
  display: block;
  pointer-events: none;
}

.blockdev-vid-caption__fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--video-opacity, 0.88);
  display: block;
}

.blockdev-vid-caption__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, var(--scrim-start, 0)) 0%,
    rgba(0, 0, 0, var(--scrim-start, 0)) 40%,
    rgba(0, 0, 0, var(--scrim-end, 0.55)) 100%
  );
  pointer-events: none;
}

.blockdev-vid-caption__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-start;
  min-height: var(--min-height-mob, 300px);
  padding-top: clamp(40px, 5.56vw, 80px);
  padding-bottom: clamp(32px, 3.33vw, 48px);
}

.blockdev-vid-caption__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: clamp(280px, 63.89vw, 920px);
}

.blockdev-vid-caption__content--left {
  align-items: flex-start;
  margin-right: auto;
}

.blockdev-vid-caption__content--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.blockdev-vid-caption__content--right {
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
}

.blockdev-vid-caption__heading {
  margin: 0;
  font-family: var(--font-heading-family, 'Inter', sans-serif);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(28px, 3.13vw, 45px);
  line-height: clamp(32px, 3.36vw, 48.4px);
  letter-spacing: -1px;
  color: var(--heading-color, #f5f2ed);
  /* font-family: Satoshi-Black !important; */
}

.blockdev-vid-caption__subtext {
  margin: 0;
  font-family: var(--font-body-family, 'Inter', sans-serif);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: clamp(22px, 2.06vw, 29.7px);
  color: var(--heading-color, #f5f2ed);
  opacity: 0.85;
  max-width: 640px;
}

.blockdev-vid-caption__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background-color: var(--heading-color, #f5f2ed);
  color: #101e1b;
  font-family: var(--font-body-family, 'Inter', sans-serif);
  font-weight: 500;
  font-size: clamp(13px, 1.11vw, 16px);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}

.blockdev-vid-caption__btn:hover {
  opacity: 0.85;
}
.blockdev-vid-caption__heading p {
    margin: 0;
}
@media (min-width: 768px) {
  .blockdev-vid-caption {
    min-height: var(--min-height-desk, 480px);
    padding-top: var(--pt-desk, 0px);
    padding-bottom: var(--pb-desk, 0px);
  }

  .blockdev-vid-caption__body {
    min-height: var(--min-height-desk, 480px);
  }
}
/* END_SECTION:pdp-parallax */
/* START_SECTION:product-support (INDEX:83) */
/* ============================================================
     new-pdp PRODUCT SUPPORT — Section Styles
     BEM: .new-pdp-support__[element]
     Reference width: 1440px | Mobile-first
     ============================================================ */

  .new-pdp-support {
    background-color: var(--bg, #ffffff);
    padding-top: var(--pt-mob, 48px);
    padding-bottom: var(--pb-mob, 48px);
  }

  /* ── INNER LAYOUT ────────────────────────────────────────── */

  .new-pdp-support__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(32px, 3.47vw, 50px);
  }

  /* ── LEFT — HEADING COLUMN ───────────────────────────────── */

  .new-pdp-support__heading-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .template-product-new-product .need_help_cover h2 {
    /* font-family: Satoshi-Black !important; */
  }


  .new-pdp-support__heading {
    margin: 0;
    font-family: var(--font-heading-family, 'Space Grotesk', 'Inter', sans-serif);
    font-weight: 700;
    font-style: normal;
    font-size: clamp(28px, 3.13vw, 45px);
    line-height: clamp(32px, 2.5vw, 36px);
    letter-spacing: -0.75px;
    color: var(--heading-color, #101e1b);
    /* font-family: Satoshi-Black !important; */
  }

  .need_help_cover h2

  .new-pdp-support__subtext {
    margin: 0;
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(13px, 1.05vw, 15.1px);
    line-height: 27.2px;
    letter-spacing: 0.7px;
    color: var(--item-color, #101e1b);
    opacity: 0.7;
  }

  /* ── RIGHT — RESOURCE LIST ───────────────────────────────── */

  .new-pdp-support__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--divider-color, #dcd7cd);
    border-bottom: 1px solid var(--divider-color, #dcd7cd);
    width: 100%;
    max-width:740px;
  }

  .new-pdp-support__item {
    border-bottom: 1px solid var(--divider-color, #dcd7cd);
  }

  .new-pdp-support__item--last {
    border-bottom: none;
  }

  /* Row link / static */

  .new-pdp-support__link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    text-decoration: none;
    color: var(--item-color, #101e1b);
    transition: color 0.18s ease;
    cursor: pointer;
    width: 100%;
  }

  .new-pdp-support__link--static {
    cursor: default;
  }

  .new-pdp-support__link:hover,
  .new-pdp-support__link:focus-visible {
    color: var(--hover-color, #2b4345);
    outline: none;
  }

  /* Icon */

  .new-pdp-support__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--icon-color, #101e1b);
    transition: color 0.18s ease;
  }

  .new-pdp-support__link:hover .new-pdp-support__icon,
  .new-pdp-support__link:focus-visible .new-pdp-support__icon {
    color: var(--hover-color, #2b4345);
  }

  /* Label */

  .new-pdp-support__label {
    font-family: var(--font-body-family, 'Inter', sans-serif);
    font-weight: 400;
    font-size: clamp(13px, 1.05vw, 15.1px);
    line-height: 27.2px;
    letter-spacing: 0.7px;
    color: inherit;
    transition: color 0.18s ease;
  }

  /* ── BREAKPOINT: 768px ───────────────────────────────────── */

  @media (min-width: 768px) {
    .new-pdp-support {
      padding-top: var(--pt-desk, 80px);
      padding-bottom: var(--pb-desk, 80px);
    }
  }

  /* ── BREAKPOINT: 991px — two-column ─────────────────────── */

  @media (min-width: 991px) {
    .new-pdp-support__inner {
      flex-direction: row;
      align-items: flex-start;
      gap: clamp(40px, 5.56vw, 80px);
    }

    /* Heading col: ~35% matching Figma left side */
    .new-pdp-support__heading-col {
      flex: 0 0 clamp(220px, 29.17vw, 420px);
      padding-top: 4px; /* optical alignment with first row */
    }

    /* List: fills remaining space */
    .new-pdp-support__list {
      flex: 1 1 0;
      min-width: 0;
    }
  }
  @media (max-width: 749px) {
    .template-product-new-product .new-pdp-support__inner {  gap: 0; }
    .template-product-new-product .new-pdp-support__link {gap: 15px;padding: 10px 0;}
    .template-product-new-product
    .template-product-new-product
  }
/* END_SECTION:product-support */
