/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 17:11 Unexpected "{"
Line 17:20 Expected ":"
Line 17:27 Unexpected "{"
Line 27:11 Unexpected "{"
Line 27:20 Expected ":"
Line 28:11 Unexpected "{"
Line 28:20 Expected ":"
Line 29:11 Unexpected "{"
... and 149 more hidden warnings

**/
{% style %}
  #MMHero-{{ section.id }} {
    position:relative;
    isolation:isolate;
    overflow:hidden;
    background:#121417!important;
    color:var(--mm-text);

    
  }

  #MMHero-{{ section.id }} *,
  #MMHero-{{ section.id }} *::before,
  #MMHero-{{ section.id }} *::after {
    box-sizing: border-box;
  }

  #MMHero-{{ section.id }} .mm-hero__background {
    position: absolute;
    inset: 0;
    z-index:0;
    pointer-events: none;
  }

  #MMHero-{{ section.id }} .mm-hero__container {
    width: min(100% - 40px, var(--mm-max-width));
    min-height: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(30px, 5vw, 35px);

    padding-top: clamp(20px, 3vw, 20px);
    padding-bottom: clamp(20px, 3vw, 20px);
  }

  /* desktop_height setting now actually applied (was previously a dead, unused CSS var) */
  @media screen and (min-width: 990px) {
    #MMHero-{{ section.id }} .mm-hero__container {
      min-height: var(--mm-desktop-height);
    }
  }

  #MMHero-{{ section.id }} .mm-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
  }

  #MMHero-{{ section.id }} .mm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--mm-accent);
    font-family: inherit;
    font-size: 0.78em;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  #MMHero-{{ section.id }} .mm-hero__eyebrow-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
  }

  #MMHero-{{ section.id }} .mm-hero__eyebrow-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* Deduped: single set of font-size/line-height/letter-spacing/max-width (previously declared twice, second silently overriding first) */
  #MMHero-{{ section.id }} .mm-hero__heading {
    max-width: 700px;
    margin: 0;
    color: var(--mm-text);
    font-family: inherit;
    font-size: clamp(40px, 4vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: inherit;
    text-wrap: balance;
  }

  #MMHero-{{ section.id }} .mm-hero__heading em,
  #MMHero-{{ section.id }} .mm-hero__heading strong {
    color: var(--mm-accent);
    font-style: normal;
  }

  #MMHero-{{ section.id }} .mm-hero__description {
    max-width: 590px;
    margin-top: 24px;
    color: var(--mm-muted);
    font-family: inherit;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.65;
  }

  #MMHero-{{ section.id }} .mm-hero__description p {
    margin: 0;
  }

  #MMHero-{{ section.id }} .mm-hero__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    color: var(--mm-text);
    font-family: inherit;
    font-size: 0.9em;
    line-height: 1.4;
  }

  #MMHero-{{ section.id }} .mm-hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--mm-accent);
  }

  #MMHero-{{ section.id }} .mm-hero__stars svg {
    width: 16px;
    height: 16px;
  }

  #MMHero-{{ section.id }} .mm-hero__rating-text {
    color: var(--mm-muted);
  }

  #MMHero-{{ section.id }} .mm-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  #MMHero-{{ section.id }} .mm-hero__button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.94em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color .2s, color .2s;
  }

  #MMHero-{{ section.id }} .mm-hero__button:hover {
    transform: translateY(-2px);
  }

  #MMHero-{{ section.id }} .mm-hero__button:focus-visible {
    outline: 2px solid var(--mm-accent);
    outline-offset: 3px;
  }

  #MMHero-{{ section.id }} .mm-hero__button--primary {
    background: var(--mm-accent);
    color: var(--mm-button-text);
    border-color: var(--mm-accent);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--mm-accent) 18%, transparent);
  }

  #MMHero-{{ section.id }} .mm-hero__button--primary:hover {
    box-shadow: 0 16px 38px color-mix(in srgb, var(--mm-accent) 25%, transparent);
  }

  #MMHero-{{ section.id }} .mm-hero__button--primary svg {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
  }

  #MMHero-{{ section.id }} .mm-hero__button--primary:hover svg {
    transform: translateX(3px);
  }

  #MMHero-{{ section.id }} .mm-hero__button--secondary {
    color: var(--mm-text);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.035);
  }

  #MMHero-{{ section.id }} .mm-hero__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.07);
  }

  #MMHero-{{ section.id }} .mm-hero__button-note {
    margin: 12px 0 0;
    color: var(--mm-muted);
    font-family: inherit;
    font-size: 0.78em;
    line-height: 1.4;
  }

  #MMHero-{{ section.id }} .mm-hero__trust {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  #MMHero-{{ section.id }} .mm-hero__trust-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-family: inherit;
    font-size: 0.82em;
    line-height: 1.35;
  }

  #MMHero-{{ section.id }} .mm-hero__trust-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mm-accent);
    border: 1px solid color-mix(in srgb, var(--mm-accent) 52%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--mm-accent) 9%, transparent);
  }

  #MMHero-{{ section.id }} .mm-hero__trust-icon svg {
    width: 12px;
    height: 12px;
  }

  #MMHero-{{ section.id }} .mm-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    height: auto;
  }


  #MMHero-{{ section.id }} .mm-hero__image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  /* Deduped: single width/height/max-width block (previously declared twice) */
#MMHero-{{ section.id }} .mm-hero__image {
  display:block;
  width:100%;
  height:auto;
  max-width:600px;
  object-fit:contain;
  margin:0;
  padding:0;
  box-shadow:none;
}

  #MMHero-{{ section.id }} .mm-hero__placeholder {
    width: 100%;
    max-width: 620px;
    opacity: 0.22;
  }

  #MMHero-{{ section.id }} .mm-hero__placeholder-svg {
    display: block;
    width: 100%;
    height: auto;
  }

  #MMHero-{{ section.id }} .mm-hero__product-badge {
    position: absolute;
    z-index: 3;
    right: 3%;
    bottom: 12%;
    max-width: 190px;
    padding: 13px 16px;
    color: var(--mm-text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: #1b1b1b;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  }

  #MMHero-{{ section.id }} .mm-hero__product-badge-label {
    display: block;
    margin-bottom: 4px;
    color: var(--mm-accent);
    font-family: inherit;
    font-size: 0.68em;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #MMHero-{{ section.id }} .mm-hero__product-badge strong {
    display: block;
    font-family: inherit;
    font-size: 0.86em;
    line-height: 1.35;
  }

  #MMHero-{{ section.id }}.mm-hero--right .mm-hero__content {
    order: 2;
  }

  #MMHero-{{ section.id }}.mm-hero--right .mm-hero__visual {
    order: 1;
  }

  @media screen and (max-width: 989px) {
    #MMHero-{{ section.id }} .mm-hero__container {
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
      gap: 26px;
      min-height: auto;
    }

    #MMHero-{{ section.id }} .mm-hero__heading {
      font-size: clamp(40px, 6vw, 60px);
    }

    #MMHero-{{ section.id }} .mm-hero__visual,
    #MMHero-{{ section.id }} .mm-hero__image-wrapper {
      min-height: 440px;
    }

    #MMHero-{{ section.id }} .mm-hero__product-badge {
      right: 0;
      bottom: 8%;
    }
  }

  @media screen and (max-width: 749px) {
    #MMHero-{{ section.id }} .mm-hero__background {
      background:
        radial-gradient(
          circle at 50% 72%,
          color-mix(in srgb, var(--mm-accent) 15%, transparent) 0%,
          transparent 52%
          z-index:-1;
        );
    }

    #MMHero-{{ section.id }} .mm-hero__container {
      width: min(100% - 30px, var(--mm-max-width));
      display: flex;
      flex-direction: column;
      gap: 22px;
      padding-top: 20px;
      padding-bottom: 14px;
      text-align: center;
      z-index:2;
    }

    #MMHero-{{ section.id }}.mm-hero--right .mm-hero__content,
    #MMHero-{{ section.id }}.mm-hero--right .mm-hero__visual {
      order: initial;
    }

    #MMHero-{{ section.id }} .mm-hero__content {
      max-width: 620px;
      margin: 0 auto;
    }

    #MMHero-{{ section.id }} .mm-hero__eyebrow {
      justify-content: center;
      margin-bottom: 14px;
      font-size: 0.72em;
    }

    #MMHero-{{ section.id }} .mm-hero__heading {
      max-width: 650px;
      margin-inline: auto;
      font-size: clamp(38px, 11vw, 54px);
      line-height: 1.01;
      letter-spacing: -0.04em;
    }

    #MMHero-{{ section.id }} .mm-hero__description {
      max-width: 520px;
      margin: 18px auto 0;
      font-size: 16px;
      line-height: 1.55;
    }

    #MMHero-{{ section.id }} .mm-hero__rating {
      justify-content: center;
      margin-top: 17px;
    }

    #MMHero-{{ section.id }} .mm-hero__actions {
      justify-content: center;
      margin-top: 24px;
    }

    #MMHero-{{ section.id }} .mm-hero__button {
      min-height: 50px;
    }

    #MMHero-{{ section.id }} .mm-hero__button-note {
      text-align: center;
    }

    #MMHero-{{ section.id }} .mm-hero__trust {
      max-width: 470px;
      margin: 26px auto 0;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      text-align: left;
    }

    #MMHero-{{ section.id }} .mm-hero__trust-item {
      justify-content: flex-start;
      font-size: 0.77em;
    }

    #MMHero-{{ section.id }} .mm-hero__visual {
      width: 100%;
      min-height: auto;
      margin-top: 2px;
    }

    #MMHero-{{ section.id }} .mm-hero__image-wrapper {
      width: var(--mm-mobile-image-width);
      min-height: auto;
      margin: 0 auto;
    }

    #MMHero-{{ section.id }} .mm-hero__image {
      width: 100%;
      max-height: none;
    }

    #MMHero-{{ section.id }} .mm-hero__product-badge {
      right: 2%;
      bottom: 7%;
      max-width: 155px;
      padding: 10px 12px;
      text-align: left;
    }
  }

  @media screen and (max-width: 479px) {
    #MMHero-{{ section.id }} .mm-hero__actions {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
    }

    #MMHero-{{ section.id }} .mm-hero__button {
      width: 100%;
    }

    #MMHero-{{ section.id }} .mm-hero__trust {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px 6px;
    }

    #MMHero-{{ section.id }} .mm-hero__trust-item {
      align-items: flex-start;
      font-size: 0.7em;
    }

    #MMHero-{{ section.id }} .mm-hero__trust-icon {
      width: 20px;
      height: 20px;
      min-width: 20px;
    }

    #MMHero-{{ section.id }} .mm-hero__product-badge {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #MMHero-{{ section.id }} .mm-hero__button,
    #MMHero-{{ section.id }} .mm-hero__button svg {
      transition: none;
    }

    #MMHero-{{ section.id }} .mm-hero__button:hover {
      transform: none;
    }
  }
{% endstyle %}