/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:dbtfy-bundles (INDEX:21) */
.mww-bundles {
    background: var(--bg);
    color: var(--text);
    padding: var(--pt) 24px var(--pb);
  }
  .mww-bundles__inner {
    max-width: var(--max);
    margin: auto;
  }

  /* Themes underline every link; kill it on everything this section renders. */
  .mww-bundles a,
  .mww-bundles a:hover,
  .mww-bundles a:focus,
  .mww-bundles a:visited {
    text-decoration: none !important;
  }

  .mww-bundles__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
  }
  .mww-bundles__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .mww-bundles__title {
    font-family: var(--mww-heading);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 12px 0 10px;
    color: var(--text);
  }
  .mww-bundles__sub {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }

  .mww-bundles__grid {
    display: grid;
    /* columns follow the block count, so two cards never leave an orphan */
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }

  .mww-bundle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    color: var(--card-text);
    border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
    border-radius: var(--radius);
    padding: 36px 32px 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .mww-bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(20, 29, 48, 0.24);
  }
  /* the recommended plan sits proudly forward of the others */
  .mww-bundle-card--featured {
    border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent), 0 26px 56px -18px rgba(20, 29, 48, 0.36);
  }
  .mww-bundle-card__ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    padding: 7px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, white), var(--accent));
    color: #17223a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 50%, transparent);
  }

  .mww-bundle-card__media {
    display: grid;
    place-items: center;
    height: 150px;
    margin: 0 -8px 22px;
    border-radius: calc(var(--radius) - 6px);
    background:
      radial-gradient(
        ellipse at 50% 46%,
        color-mix(in srgb, var(--accent) 22%, transparent),
        transparent 68%
      );
  }
  .mww-bundle-card__img {
    max-height: 100%;
    max-width: 70%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 3px;
    filter: drop-shadow(0 14px 20px rgba(20, 29, 48, 0.35));
    transition: transform 0.3s ease;
  }
  .mww-bundle-card:hover .mww-bundle-card__img {
    transform: translateY(-4px);
  }
  .mww-bundle-card__save {
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 22%, transparent);
    color: var(--card-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mww-bundle-card__badge {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 12px;
  }
  .mww-bundle-card__title {
    font-family: var(--mww-heading);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--card-text);
  }
  .mww-bundle-card__text {
    color: color-mix(in srgb, var(--card-text) 68%, transparent);
    font-size: 15px;
    line-height: 1.62;
    margin: 0 0 22px;
  }

  .mww-bundle-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 9px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid color-mix(in srgb, var(--card-text) 14%, transparent);
  }
  .mww-bundle-card__now {
    font-family: var(--mww-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--card-text);
  }
  .mww-bundle-card__price s {
    font-size: 16px;
    opacity: 0.55;
  }
  .mww-bundle-card__note {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.62;
  }

  .mww-bundle-card__list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 11px;
  }
  .mww-bundle-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--card-text) 88%, transparent);
  }
  .mww-bundle-card__list svg {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 1px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* the form is the flex child when "add to cart" is on, so it takes the auto margin */
  .mww-bundle-card__form {
    margin-top: auto;
  }
  .mww-bundle-card__button {
    display: block;
    width: 100%;
    /* pins the CTA to the bottom so cards of different length still line up */
    margin-top: auto;
    text-align: center;
    padding: 16px 22px;
    border: 0;
    border-radius: 9px;
    background: var(--accent);
    color: #17223a;
    font-family: inherit;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
  }
  .mww-bundle-card__form .mww-bundle-card__button {
    margin-top: 0;
  }
  .mww-bundle-card__button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
  }
  .mww-bundle-card__button--disabled {
    background: color-mix(in srgb, var(--card-text) 22%, transparent);
    color: color-mix(in srgb, var(--card-text) 70%, transparent);
    cursor: not-allowed;
    pointer-events: none;
  }
  .mww-bundle-card__footnote {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 989px) {
    .mww-bundles__grid {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    }
    .mww-bundles__head {
      margin-bottom: 36px;
    }
  }
  @media (max-width: 640px) {
    .mww-bundles {
      padding-left: 16px;
      padding-right: 16px;
    }
    .mww-bundles__grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 30px;
    }
    .mww-bundle-card {
      padding: 32px 24px 26px;
    }
    .mww-bundle-card__now {
      font-size: 36px;
    }
    .mww-bundle-card__title {
      font-size: 24px;
    }
    .mww-bundles__sub {
      font-size: 15px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mww-bundle-card,
    .mww-bundle-card:hover,
    .mww-bundle-card__button,
    .mww-bundle-card__button:hover,
    .mww-bundle-card__img,
    .mww-bundle-card:hover .mww-bundle-card__img {
      transition: none;
      transform: none;
    }
    .mww-bundle-card__ribbon {
      transition: none;
    }
  }
/* END_SECTION:dbtfy-bundles */

/* START_SECTION:dbtfy-closing-cta (INDEX:22) */
.mww-cta-section {
    position: relative;
    min-height: var(--min-h);
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
    padding: var(--pt) 24px var(--pb);
  }

  /* Themes underline every link; kill it on everything this section renders. */
  .mww-cta-section a,
  .mww-cta-section a:hover,
  .mww-cta-section a:focus,
  .mww-cta-section a:visited {
    text-decoration: none !important;
  }

  .mww-cta-section__media,
  .mww-cta-section__scrim,
  .mww-cta-section__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .mww-cta-section__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  /* only rendered with an image, so the flat colour is never double-darkened */
  .mww-cta-section__scrim {
    background:
      linear-gradient(rgba(10, 16, 32, var(--overlay)), rgba(10, 16, 32, var(--overlay))),
      linear-gradient(180deg, rgba(10, 16, 32, 0.35), transparent 38%, rgba(10, 16, 32, 0.45));
  }
  .mww-cta-section__glow {
    background: radial-gradient(
      ellipse 60% 55% at 50% 48%,
      color-mix(in srgb, var(--accent) var(--glow), transparent),
      transparent 70%
    );
  }

  .mww-cta-section__content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
  }
  .mww-cta-section__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .mww-cta__spark {
    width: 15px;
    height: 15px;
    flex: none;
    fill: currentColor;
    opacity: 0.85;
  }
  .mww-cta-section__title {
    font-family: var(--mww-heading);
    font-size: clamp(32px, 4.6vw, 58px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 16px 0 12px;
    color: var(--text);
  }
  .mww-cta-section__sub {
    font-family: var(--mww-heading);
    font-style: italic;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 32ch;
  }

  .mww-cta-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
  }
  .mww-cta-section__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 32px;
    border-radius: 9px;
    background: var(--accent);
    color: #17223a;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    box-shadow: 0 16px 34px -12px color-mix(in srgb, var(--accent) 80%, transparent);
    transition: transform 0.2s ease, filter 0.2s ease;
  }
  .mww-cta-section__button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
  }
  .mww-cta-section__arrow {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }
  .mww-cta-section__button:hover .mww-cta-section__arrow {
    transform: translateX(4px);
  }
  .mww-cta-section__ghost {
    display: inline-flex;
    align-items: center;
    padding: 17px 30px;
    border-radius: 9px;
    border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
    color: var(--text);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .mww-cta-section__ghost:hover {
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border-color: var(--accent);
  }

  .mww-cta-section__form {
    display: contents;
  }
  .mww-cta-section__button--disabled {
    background: color-mix(in srgb, var(--text) 26%, transparent);
    color: color-mix(in srgb, var(--text) 72%, transparent);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
  }
  .mww-cta-section__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
  }
  .mww-cta-section__from {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .mww-cta-section__now {
    font-family: var(--mww-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
  }
  .mww-cta-section__price s {
    color: var(--muted);
    font-size: 15px;
  }
  .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .mww-cta-section__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--muted);
  }
  .mww-cta-section__note svg {
    width: 16px;
    height: 16px;
    flex: none;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 749px) {
    .mww-cta-section {
      padding-left: 18px;
      padding-right: 18px;
    }
    .mww-cta-section__eyebrow {
      gap: 9px;
      letter-spacing: 0.22em;
    }
    .mww-cta-section__actions {
      gap: 12px;
      margin-top: 26px;
    }
    .mww-cta-section__button,
    .mww-cta-section__ghost {
      width: 100%;
      justify-content: center;
    }
    .mww-cta-section__now {
      font-size: 25px;
    }
    .mww-cta-section__note {
      margin-top: 18px;
      font-size: 12px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mww-cta-section__button,
    .mww-cta-section__button:hover,
    .mww-cta-section__arrow,
    .mww-cta-section__button:hover .mww-cta-section__arrow {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:dbtfy-closing-cta */

/* START_SECTION:dbtfy-featured-products (INDEX:31) */
.mww-featured {
    background: var(--bg);
    color: var(--text);
    padding: var(--pt) 0 var(--pb);
  }
  .mww-featured__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Themes underline every link; kill it on everything this section renders. */
  .mww-featured a,
  .mww-featured a:hover,
  .mww-featured a:focus,
  .mww-featured a:visited {
    text-decoration: none !important;
  }

  .mww-featured__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 40px;
  }
  .mww-featured__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .mww-featured__title {
    font-family: var(--mww-heading);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 12px 0 10px;
    color: var(--text);
  }
  .mww-featured__sub {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }

  .mww-featured__row--grid {
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    gap: 22px;
  }
  .mww-featured__carousel {
    position: relative;
  }
  /* Carousel bleeds to the container edges so cards can scroll past them. */
  .mww-featured__row--carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    margin: 0 -24px;
    /* bottom padding is only headroom for the card hover shadow */
    padding: 4px 24px 14px;
    -webkit-overflow-scrolling: touch;
    /* arrows are the affordance here, so the native bar is hidden */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mww-featured__row--carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .mww-featured__row--carousel > .mww-product-card {
    flex: 0 0 clamp(230px, 25vw, 290px);
    scroll-snap-align: start;
  }
  /* the rAF glide drives scrollLeft directly, so snapping must be off */
  .mww-featured__row--glide {
    scroll-snap-type: none;
  }
  .mww-featured__row--carousel > [data-mww-clone] {
    user-select: none;
  }
  .mww-featured__row--carousel:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }

  .mww-featured__nav {
    position: absolute;
    top: calc(50% - 40px);
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 50%;
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(20, 29, 48, 0.14);
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }
  .mww-featured__nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mww-featured__nav:hover {
    background: var(--text);
    color: var(--accent);
    border-color: var(--text);
  }
  .mww-featured__nav--prev {
    left: -6px;
  }
  .mww-featured__nav--next {
    right: -6px;
  }
  /* hidden until JS confirms the track actually overflows */
  .mww-featured__carousel:not([data-mww-ready]) .mww-featured__nav,
  .mww-featured__carousel[data-mww-fits] .mww-featured__nav {
    opacity: 0;
    pointer-events: none;
  }

  /* ---------- card ---------- */
  .mww-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(20, 29, 48, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .mww-product-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    box-shadow: 0 22px 44px -12px rgba(20, 29, 48, 0.22);
  }
  /* hairline gold accent that draws in on hover */
  .mww-product-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--accent),
      color-mix(in srgb, var(--accent) 40%, transparent)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .mww-product-card:hover::after {
    transform: scaleX(1);
  }

  .mww-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: var(--ratio);
    overflow: hidden;
    background: color-mix(in srgb, var(--accent) 7%, var(--card));
  }
  /* "contain" shows the whole book cover on a soft plinth instead of cropping it */
  .mww-product-card__media--contain {
    display: grid;
    place-items: center;
    padding: 26px 26px 24px;
    background:
      radial-gradient(
        ellipse at 50% 44%,
        color-mix(in srgb, var(--accent) 20%, transparent),
        transparent 68%
      ),
      linear-gradient(180deg, color-mix(in srgb, var(--accent) 9%, var(--card)), var(--card));
  }
  .mww-product-card__media--contain .mww-product-card__img,
  .mww-product-card__media--contain .mww-product-card__ph {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px;
    filter: drop-shadow(0 16px 22px rgba(20, 29, 48, 0.3));
  }
  .mww-product-card__img,
  .mww-product-card__ph {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mww-product-card__ph {
    fill: color-mix(in srgb, var(--text) 16%, transparent);
  }
  .mww-product-card:hover .mww-product-card__img {
    transform: scale(1.05);
  }
  .mww-product-card__media--contain:hover .mww-product-card__img {
    transform: translateY(-5px) scale(1.03);
  }

  .mww-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 11px;
    border-radius: 999px;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 88%, white),
      var(--accent)
    );
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 45%, transparent);
  }
  .mww-product-card__badge--out {
    background: color-mix(in srgb, var(--text) 85%, transparent);
    box-shadow: none;
  }

  .mww-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 17px 17px;
  }
  .mww-product-card__vendor {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .mww-product-card__title {
    font-family: var(--mww-heading);
    font-size: 17.5px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    color: var(--text);
    /* two-line clamp keeps every card the same shape without a magic min-height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .mww-product-card__title a {
    color: inherit;
    transition: color 0.2s ease;
  }
  .mww-product-card:hover .mww-product-card__title a {
    color: color-mix(in srgb, var(--accent) 75%, var(--text));
  }

  /* ---------- star rating ---------- */
  .mww-product-card__rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
  }
  .mww-stars {
    position: relative;
    display: inline-block;
    line-height: 0;
    flex: none;
  }
  .mww-stars__base,
  .mww-stars__fill {
    display: flex;
    gap: 2px;
  }
  .mww-stars svg {
    width: 13px;
    height: 13px;
    flex: none;
  }
  .mww-stars__base svg {
    fill: color-mix(in srgb, var(--muted) 30%, transparent);
  }
  /* gold layer is clipped to the score, so 4.9 shows a real partial star */
  .mww-stars__fill {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .mww-stars__fill svg {
    fill: var(--accent);
  }
  .mww-product-card__ratingval {
    font-size: 12px;
    font-weight: 800;
    color: var(--text);
  }
  .mww-product-card__reviews {
    font-size: 11.5px;
    color: var(--muted);
  }

  .mww-product-card__foot {
    margin-top: auto;
  }
  .mww-product-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    padding-top: 12px;
    margin-bottom: 10px;
    border-top: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
  }
  .mww-product-card__meta svg {
    width: 13px;
    height: 13px;
    flex: none;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mww-product-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
  }
  .mww-product-card__from {
    font-size: 10.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .mww-product-card__now {
    font-family: var(--mww-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
  }
  .mww-product-card__price s {
    font-weight: 500;
    color: var(--muted);
    font-size: 13px;
  }

  .mww-product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 12px;
    border-radius: 8px;
    background: var(--text);
    color: var(--card);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .mww-product-card__button:hover {
    background: var(--accent);
    color: #fff;
  }
  .mww-product-card__btnarrow {
    width: 14px;
    height: 14px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mww-product-card__button:hover .mww-product-card__btnarrow {
    opacity: 1;
    transform: translateX(0);
  }

  .mww-featured__footer {
    text-align: center;
    margin-top: 34px;
  }
  .mww-featured__viewall {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--text);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .mww-featured__viewall:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--accent);
  }
  .mww-featured__arrow {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }
  .mww-featured__viewall:hover .mww-featured__arrow {
    transform: translateX(4px);
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 989px) {
    .mww-featured__row--grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mww-featured__head {
      margin-bottom: 30px;
    }
  }
  @media (max-width: 640px) {
    .mww-featured__inner {
      padding: 0 18px;
    }
    .mww-featured__row--grid {
      gap: 14px;
    }
    .mww-featured__row--carousel {
      margin: 0 -18px;
      padding-left: 18px;
      padding-right: 18px;
      scroll-padding-left: 18px;
    }
    .mww-featured__nav {
      width: 38px;
      height: 38px;
    }
    .mww-featured__nav--prev {
      left: -4px;
    }
    .mww-featured__nav--next {
      right: -4px;
    }
    .mww-product-card__media--contain {
      padding: 20px 18px 18px;
    }
    .mww-product-card__body {
      padding: 15px 13px 14px;
    }
    .mww-product-card__title {
      font-size: 15.5px;
    }
    .mww-product-card__now {
      font-size: 19px;
    }
    .mww-product-card__meta {
      letter-spacing: 0.03em;
    }
    .mww-featured__sub {
      font-size: 15px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mww-product-card,
    .mww-product-card:hover,
    .mww-product-card::after,
    .mww-product-card:hover::after,
    .mww-product-card__img,
    .mww-product-card:hover .mww-product-card__img,
    .mww-product-card__btnarrow,
    .mww-featured__arrow,
    .mww-featured__viewall:hover .mww-featured__arrow {
      transition: none;
      transform: none;
    }
    .mww-product-card__btnarrow {
      opacity: 1;
    }
  }
/* END_SECTION:dbtfy-featured-products */

/* START_SECTION:dbtfy-hero (INDEX:34) */
.mww-hero {
    position: relative;
    background: var(--mww-bg);
    color: var(--mww-text);
    padding: var(--mww-pt) 24px var(--mww-pb);
    overflow: hidden;
  }

  /* Themes underline every link; kill it on everything this section renders. */
  .mww-hero a,
  .mww-hero a:hover,
  .mww-hero a:focus,
  .mww-hero a:visited {
    text-decoration: none !important;
  }

  .mww-hero__panel {
    position: relative;
    max-width: var(--mww-max);
    margin: 0 auto;
  }
  /* the reference look: everything inside one soft rounded card */
  .mww-hero--panel .mww-hero__panel {
    padding: 48px 52px 44px;
    /* border-radius: var(--mww-panel-radius);
    background:
      radial-gradient(
        ellipse 70% 90% at 8% 0%,
        color-mix(in srgb, var(--mww-accent) 20%, transparent),
        transparent 62%
      ),
      var(--mww-panel);
    box-shadow: 0 34px 70px -34px rgba(20, 29, 48, 0.3); */
    overflow: hidden;
  }

  .mww-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--mww-visual));
    align-items: center;
    gap: 40px;
  }
  .mww-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }
  .mww-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mww-accent);
    margin-bottom: 18px;
  }
  .mww-hero__sprig {
    flex: none;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.85;
  }

  .mww-hero__title {
    font-family: var(--mww-heading);
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--mww-text);
  }
  .mww-hero__highlight {
    font-family: var(--mww-heading);
    font-style: italic;
    font-weight: 600;
    line-height: inherit;
    color: var(--mww-accent);
  }
  /* inline = highlight flows mid-sentence; stacked = it drops to its own line */
  .mww-hero__title--inline .mww-hero__highlight,
  .mww-hero__title--inline .mww-hero__title-tail {
    display: inline;
  }
  .mww-hero__title--inline .mww-hero__highlight::before,
  .mww-hero__title--inline .mww-hero__title-tail::before {
    content: ' ';
  }
  .mww-hero__title--stacked .mww-hero__highlight,
  .mww-hero__title--stacked .mww-hero__title-tail {
    display: block;
    margin-top: 4px;
  }

  .mww-hero__text {
    max-width: 540px;
    color: var(--mww-muted);
    font-size: 17px;
    line-height: 1.72;
    margin-top: 22px;
  }
  .mww-hero__text > *:first-child {
    margin-top: 0;
  }
  .mww-hero__text > *:last-child {
    margin-bottom: 0;
  }

  .mww-hero__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .mww-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 10px 0 30px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .mww-btn:hover {
    transform: translateY(-2px);
  }
  .mww-btn--primary {
    background: linear-gradient(
      100deg,
      color-mix(in srgb, var(--mww-accent) 82%, white),
      var(--mww-accent) 55%,
      var(--mww-accent2)
    );
    color: #fff;
    box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--mww-accent) 85%, transparent);
  }
  .mww-btn__chip {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease;
  }
  .mww-btn__chip svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mww-btn--primary:hover .mww-btn__chip {
    transform: translateX(3px);
  }
  .mww-btn--secondary {
    padding: 0 30px;
    border: 1px solid var(--mww-accent);
    color: var(--mww-text);
    background: transparent;
  }
  .mww-btn--secondary:hover {
    background: var(--mww-text);
    color: var(--mww-accent);
    border-color: var(--mww-text);
  }

  /* the form must not become a flex item, or the button loses the row gap */
  .mww-hero__form {
    display: contents;
  }
  .mww-btn--disabled {
    background: color-mix(in srgb, var(--mww-text) 24%, transparent);
    color: color-mix(in srgb, var(--mww-text) 70%, transparent);
    box-shadow: none;
    padding: 0 30px;
    cursor: not-allowed;
    pointer-events: none;
  }
  .mww-hero__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }
  .mww-hero__price-from {
    font-size: 11px;
    color: var(--mww-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .mww-hero__price-now {
    font-family: var(--mww-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--mww-text);
  }
  .mww-hero__price s {
    color: var(--mww-muted);
    font-size: 15px;
  }
  .mww-hero__price-save {
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--mww-accent) 18%, transparent);
    color: color-mix(in srgb, var(--mww-accent) 74%, black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .mww-hero__play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--mww-muted);
    font-size: 14px;
    font-weight: 600;
  }
  .mww-hero__play-circle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 50%;
    background: color-mix(in srgb, var(--mww-accent) 22%, transparent);
    color: var(--mww-accent);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .mww-hero__play-circle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-left: 2px;
  }
  .mww-hero__play:hover .mww-hero__play-circle {
    background: var(--mww-accent);
    color: #fff;
    transform: scale(1.06);
  }
  .mww-hero__play:hover {
    color: var(--mww-text);
  }

  .mww-hero__proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 28px;
  }
  .mww-hero__proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mww-hero__stars {
    color: var(--mww-accent);
    font-size: 18px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .mww-hero__shield {
    flex: none;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--mww-accent);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mww-hero__proof-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .mww-hero__proof-copy strong {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--mww-text);
  }
  .mww-hero__proof-copy span {
    font-size: 12px;
    line-height: 1.3;
    color: var(--mww-muted);
  }
  .mww-hero__proof-copy--wrap {
    max-width: 150px;
    font-size: 13.5px;
    line-height: 1.35;
    color: var(--mww-text);
  }
  .mww-hero__proof-rule {
    width: 1px;
    align-self: stretch;
    min-height: 34px;
    background: rgba(110, 90, 50, 0.28);
  }

  /* ---------- visual ---------- */
  .mww-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: var(--mww-visual-h);
  }
  .mww-hero__frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: var(--mww-visual-h);
    overflow: hidden;
  }
  .mww-hero__visual--circle .mww-hero__frame {
    width: min(100%, var(--mww-visual-h));
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
    border-radius: 50%;
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--mww-accent) 55%, transparent),
      color-mix(in srgb, var(--mww-accent2) 45%, transparent)
    );
    box-shadow: 0 30px 60px -26px rgba(20, 29, 48, 0.4);
  }
  .mww-hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--mww-obj);
  }
  .mww-hero__visual--circle .mww-hero__image {
    border-radius: 50%;
  }
  .mww-hero__fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .mww-hero__visual--bleed .mww-hero__fade {
    background:
      linear-gradient(
        90deg,
        var(--mww-bg) 0%,
        rgba(var(--mww-bg-rgb), 0.9) 9%,
        rgba(var(--mww-bg-rgb), 0) 30%
      ),
      linear-gradient(0deg, var(--mww-bg) 0%, rgba(var(--mww-bg-rgb), 0) 12%);
  }
  .mww-hero__placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    color: var(--mww-muted);
    background: color-mix(in srgb, var(--mww-accent) 12%, transparent);
  }

  /* ---------- decorative shapes ---------- */
  .mww-hero__decor {
    position: absolute;
    pointer-events: none;
  }
  .mww-hero__decor--ring {
    inset: -3% -3% auto auto;
    width: 86%;
    aspect-ratio: 1;
    top: 7%;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--mww-accent) 42%, transparent);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(28deg);
  }
  .mww-hero__decor--wave {
    top: 6%;
    left: -2%;
    width: 118px;
    height: 58px;
    fill: none;
    stroke: color-mix(in srgb, var(--mww-accent) 45%, transparent);
    stroke-width: 2;
    stroke-linecap: round;
  }
  .mww-hero__decor--dot-a,
  .mww-hero__decor--dot-b,
  .mww-hero__decor--circle {
    border-radius: 50%;
  }
  .mww-hero__decor--dot-a {
    top: 12%;
    right: 4%;
    width: 16px;
    height: 16px;
    background: var(--mww-accent2);
  }
  .mww-hero__decor--dot-b {
    top: 22%;
    right: 12%;
    width: 10px;
    height: 10px;
    background: color-mix(in srgb, var(--mww-accent) 70%, transparent);
  }
  .mww-hero__decor--circle {
    top: 26%;
    right: -1%;
    width: 34px;
    height: 34px;
    border: 4px solid color-mix(in srgb, var(--mww-accent) 55%, transparent);
  }

  /* ---------- floating badges ---------- */
  .mww-hero__float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--mww-card);
    color: var(--mww-text);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 16px 30px -14px rgba(20, 29, 48, 0.45);
  }
  .mww-hero__float svg {
    width: 16px;
    height: 16px;
    flex: none;
    fill: none;
    stroke: var(--mww-accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mww-hero__float--a {
    left: -4%;
    top: 26%;
  }
  .mww-hero__float--a svg {
    fill: var(--mww-accent);
    stroke: none;
  }
  .mww-hero__float--b {
    right: -6%;
    bottom: 20%;
  }

  /* ---------- partners strip ---------- */
  .mww-hero__partners {
    position: relative;
    z-index: 1;
    margin-top: 46px;
    text-align: center;
  }
  .mww-hero__partners-title {
    font-family: var(--mww-heading);
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    color: var(--mww-text);
  }
  .mww-hero__partners-title em {
    font-style: normal;
    color: var(--mww-accent);
  }
  .mww-hero__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px 52px;
  }
  .mww-hero__logo img {
    display: block;
    max-height: 34px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
  }
  .mww-hero__logo:hover img {
    opacity: 1;
    filter: grayscale(0);
  }
  .mww-hero__logo-ph {
    display: grid;
    place-items: center;
    width: 130px;
    height: 34px;
    border: 1px dashed color-mix(in srgb, var(--mww-text) 25%, transparent);
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mww-muted);
  }

  /* ---------- stats band ---------- */
  .mww-hero__stats {
    position: relative;
    z-index: 2;
    max-width: min(var(--mww-max), 900px);
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    background: var(--mww-card);
    border: 1px solid rgba(110, 90, 50, 0.16);
    border-radius: var(--mww-radius);
    box-shadow: 0 12px 30px rgba(20, 29, 48, 0.06);
    overflow: hidden;
  }
  .mww-hero__stat {
    padding: 20px 18px;
    text-align: center;
    position: relative;
  }
  .mww-hero__stat:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 26%;
    height: 48%;
    width: 1px;
    background: rgba(110, 90, 50, 0.12);
  }
  .mww-hero__stat strong {
    display: block;
    font-family: var(--mww-heading);
    font-size: 25px;
    line-height: 1;
    color: var(--mww-text);
  }
  .mww-hero__stat span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--mww-muted);
  }

  /* full-bleed image only makes sense without the panel */
  @media (min-width: 990px) {
    .mww-hero__inner {
      grid-template-columns: minmax(400px, 1fr) minmax(0, var(--mww-visual));
    }
    .mww-hero:not(.mww-hero--panel) .mww-hero__visual--bleed {
      margin-right: calc(-1 * max(24px, (100vw - var(--mww-max)) / 2));
      margin-top: calc(-1 * var(--mww-pt));
      margin-bottom: calc(-1 * var(--mww-pb));
      align-self: stretch;
    }
  }

  @media (max-width: 1199px) and (min-width: 990px) {
    .mww-hero--panel .mww-hero__panel {
      padding: 40px 36px 36px;
    }
    .mww-hero__proof-copy--wrap {
      max-width: 132px;
    }
    .mww-hero__float--a {
      left: -1%;
    }
    .mww-hero__float--b {
      right: -2%;
    }
  }

  @media (max-width: 989px) {
    .mww-hero {
      padding-top: var(--mww-ptm);
      padding-bottom: var(--mww-pbm);
    }
    .mww-hero--panel .mww-hero__panel {
      padding: 34px 24px 30px;
    }
    .mww-hero__inner {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .mww-hero__copy {
      text-align: center;
      margin: auto;
      max-width: 640px;
    }
    .mww-hero__eyebrow,
    .mww-hero__actions,
    .mww-hero__proof {
      justify-content: center;
    }
    .mww-hero__text {
      margin-left: auto;
      margin-right: auto;
    }
    .mww-hero__visual {
      order: 2;
      min-height: 0;
    }
    .mww-hero__visual--circle .mww-hero__frame {
      width: min(86%, 420px);
    }
    .mww-hero__visual--bleed .mww-hero__frame {
      min-height: 0;
      aspect-ratio: 16 / 11;
    }
    .mww-hero:not(.mww-hero--panel) .mww-hero__visual--bleed {
      margin-left: -24px;
      margin-right: -24px;
    }
    .mww-hero__float--a {
      left: 0;
      top: 12%;
    }
    .mww-hero__float--b {
      right: 0;
      bottom: 10%;
    }
    .mww-hero__partners {
      margin-top: 34px;
    }
    .mww-hero__logos {
      gap: 20px 34px;
    }
    .mww-hero__stats {
      margin-top: 28px;
    }
    .mww-hero__stat:not(:last-child):after {
      display: none;
    }
  }

  @media (max-width: 749px) {
    .mww-hero {
      padding-left: 16px;
      padding-right: 16px;
    }
    .mww-hero--panel .mww-hero__panel {
      padding: 28px 18px 26px;
    }
    .mww-hero__title {
      font-size: clamp(30px, 8.6vw, 44px);
    }
    .mww-hero__text {
      font-size: 15.5px;
      margin-top: 18px;
    }
    .mww-hero__eyebrow {
      font-size: 10px;
      letter-spacing: 0.22em;
      gap: 8px;
    }
    .mww-hero__actions {
      gap: 14px;
      margin-top: 26px;
    }
    .mww-btn {
      flex: 1 1 100%;
      min-height: 54px;
    }
    .mww-hero__price {
      justify-content: center;
    }
    .mww-hero__price-now {
      font-size: 26px;
    }
    .mww-hero__play {
      width: 100%;
      justify-content: center;
    }
    .mww-hero__proof {
      gap: 14px 16px;
      margin-top: 22px;
    }
    .mww-hero__proof-copy--wrap {
      max-width: none;
      text-align: left;
    }
    .mww-hero__float {
      font-size: 11.5px;
      padding: 9px 14px;
    }
    .mww-hero:not(.mww-hero--panel) .mww-hero__visual--bleed {
      margin-left: -16px;
      margin-right: -16px;
    }
    .mww-hero__visual--bleed .mww-hero__frame {
      aspect-ratio: 4 / 3;
    }
  }

  @media (max-width: 400px) {
    .mww-hero__proof-rule {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mww-btn,
    .mww-btn:hover,
    .mww-btn__chip,
    .mww-btn--primary:hover .mww-btn__chip,
    .mww-hero__play-circle,
    .mww-hero__play:hover .mww-hero__play-circle {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:dbtfy-hero */

/* START_SECTION:dbtfy-instagram (INDEX:40) */
#shopify-section-{{ section.id }} .splide__list{
    justify-content: center;
  }
/* END_SECTION:dbtfy-instagram */

/* START_SECTION:dbtfy-paths (INDEX:47) */
.mww-paths {
    background: var(--bg);
    padding: var(--pt) 24px var(--pb);
    color: var(--text);
  }
  .mww-paths__inner {
    max-width: 1200px;
    margin: auto;
  }
  .mww-paths__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 44px;
  }
  .mww-paths__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .mww-paths__title {
    font-family: var(--mww-heading);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 12px 0 10px;
    color: var(--text);
  }
  .mww-paths__sub {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }
  .mww-paths__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    gap: 20px;
  }

  /* Card is an <a>; text-decoration must be killed here because it cannot be
     removed by descendants once an ancestor link sets it. */
  .mww-paths a.mww-path-card,
  .mww-paths a.mww-path-card:hover,
  .mww-paths a.mww-path-card:focus,
  .mww-paths a.mww-path-card:visited {
    text-decoration: none !important;
    color: var(--text);
  }
  .mww-path-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: var(--card);
    border: 1px solid rgba(120, 95, 45, 0.14);
    border-radius: var(--radius);
    padding: 34px 26px 30px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .mww-path-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    box-shadow: 0 18px 40px rgba(20, 29, 48, 0.09);
  }
  .mww-path-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--accent) 9%, var(--card));
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    color: var(--accent);
    font-size: 25px;
    line-height: 1;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .mww-path-card:hover .mww-path-card__icon {
    background: color-mix(in srgb, var(--accent) 16%, var(--card));
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  }
  .mww-path-card__title {
    display: block;
    font-family: var(--mww-heading);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 8px;
  }
  .mww-path-card__text {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .mww-path-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 4px;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
  }
  .mww-path-card__arrow {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }
  .mww-path-card:hover .mww-path-card__arrow {
    transform: translateX(4px);
  }

  @media (max-width: 989px) {
    .mww-paths__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mww-paths__head {
      margin-bottom: 32px;
    }
  }
  @media (max-width: 640px) {
    .mww-paths {
      padding-left: 18px;
      padding-right: 18px;
    }
    .mww-paths__grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }
    .mww-path-card {
      padding: 28px 22px 26px;
    }
    .mww-paths__sub {
      font-size: 15px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mww-path-card,
    .mww-path-card:hover,
    .mww-path-card__arrow,
    .mww-path-card:hover .mww-path-card__arrow {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:dbtfy-paths */

/* START_SECTION:dbtfy-spotlight (INDEX:58) */
.mww-spot {
    background: var(--bg);
    color: var(--text);
    padding: var(--pt) 24px var(--pb);
  }

  /* Themes underline every link; kill it on everything this section renders. */
  .mww-spot a,
  .mww-spot a:hover,
  .mww-spot a:focus,
  .mww-spot a:visited {
    text-decoration: none !important;
  }

  .mww-spot__panel {
    max-width: var(--max);
    margin: auto;
    display: grid;
    grid-template-columns: var(--media) 1fr;
    align-items: stretch;
    background: var(--panel);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 56px -18px rgba(20, 29, 48, 0.2);
  }
  /* flip the columns without moving the media out of the DOM order */
  .mww-spot__panel--media-right {
    grid-template-columns: 1fr var(--media);
  }
  .mww-spot__panel--media-right .mww-spot__media {
    order: 2;
  }

  .mww-spot__media {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    background: color-mix(in srgb, var(--accent) 8%, var(--panel));
  }
  .mww-spot__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mww-spot__panel:hover .mww-spot__img {
    transform: scale(1.03);
  }
  /* "showcase" floats the whole cover on a glow instead of cropping it */
  .mww-spot__media--contain {
    display: grid;
    place-items: center;
    padding: 46px;
    background:
      radial-gradient(
        ellipse at 50% 46%,
        color-mix(in srgb, var(--accent) 24%, transparent),
        transparent 66%
      ),
      linear-gradient(160deg, color-mix(in srgb, var(--accent) 12%, var(--panel)), var(--panel));
  }
  .mww-spot__media--contain .mww-spot__img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    filter: drop-shadow(0 26px 34px rgba(20, 29, 48, 0.34));
  }
  .mww-spot__panel:hover .mww-spot__media--contain .mww-spot__img {
    transform: translateY(-6px) scale(1.02);
  }
  .mww-spot__ph {
    fill: color-mix(in srgb, var(--text) 16%, transparent);
  }
  .mww-spot__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, white), var(--accent));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 45%, transparent);
  }

  .mww-spot__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
  }
  .mww-spot__eyebrow {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .mww-spot__title {
    font-family: var(--mww-heading);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 14px 0 0;
    color: var(--text);
  }

  .mww-spot__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
  }
  .mww-spot__rating strong {
    color: var(--text);
    font-weight: 800;
  }
  .mww-stars {
    position: relative;
    display: inline-block;
    line-height: 0;
    flex: none;
  }
  .mww-stars__base,
  .mww-stars__fill {
    display: flex;
    gap: 2px;
  }
  .mww-stars svg {
    width: 15px;
    height: 15px;
    flex: none;
  }
  .mww-stars__base svg {
    fill: color-mix(in srgb, var(--muted) 30%, transparent);
  }
  /* gold layer is clipped to the score, so 4.9 shows a real partial star */
  .mww-stars__fill {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .mww-stars__fill svg {
    fill: var(--accent);
  }

  .mww-spot__text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
    margin-top: 18px;
  }
  .mww-spot__text > *:first-child {
    margin-top: 0;
  }
  .mww-spot__text > *:last-child {
    margin-bottom: 0;
  }

  .mww-spot__chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
  }
  .mww-spot__chip {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text);
  }
  .mww-spot__chip svg {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 1px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mww-spot__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }
  .mww-spot__from {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .mww-spot__now {
    font-family: var(--mww-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
  }
  .mww-spot__price s {
    color: var(--muted);
    font-size: 16px;
  }
  .mww-spot__save {
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
    color: color-mix(in srgb, var(--accent) 72%, black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mww-spot__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
  }
  .mww-spot__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 30px;
    border-radius: 9px;
    background: var(--text);
    color: var(--accent);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    box-shadow: 0 14px 30px -10px rgba(20, 29, 48, 0.5);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .mww-spot__button:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: #fff;
  }
  .mww-spot__arrow {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }
  .mww-spot__button:hover .mww-spot__arrow {
    transform: translateX(4px);
  }
  .mww-spot__link {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--muted);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .mww-spot__link:hover {
    color: var(--text);
    border-color: var(--accent);
  }

  @media (max-width: 989px) {
    .mww-spot__panel,
    .mww-spot__panel--media-right {
      grid-template-columns: 1fr;
    }
    .mww-spot__panel--media-right .mww-spot__media {
      order: 0;
    }
    .mww-spot__media {
      min-height: 0;
      aspect-ratio: 4 / 3;
    }
    .mww-spot__media--contain {
      padding: 34px;
    }
    .mww-spot__copy {
      padding: 38px 32px 40px;
    }
  }
  @media (max-width: 640px) {
    .mww-spot {
      padding-left: 16px;
      padding-right: 16px;
    }
    .mww-spot__media {
      aspect-ratio: 1 / 1;
    }
    .mww-spot__media--contain {
      padding: 26px;
    }
    .mww-spot__copy {
      padding: 30px 22px 32px;
    }
    .mww-spot__chips {
      grid-template-columns: minmax(0, 1fr);
      gap: 9px;
    }
    .mww-spot__text {
      font-size: 15px;
    }
    .mww-spot__now {
      font-size: 28px;
    }
    .mww-spot__actions {
      gap: 14px;
    }
    .mww-spot__button {
      width: 100%;
      justify-content: center;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mww-spot__img,
    .mww-spot__panel:hover .mww-spot__img,
    .mww-spot__panel:hover .mww-spot__media--contain .mww-spot__img,
    .mww-spot__button,
    .mww-spot__button:hover,
    .mww-spot__arrow,
    .mww-spot__button:hover .mww-spot__arrow {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:dbtfy-spotlight */

/* START_SECTION:dbtfy-ticker (INDEX:62) */
.mww-ticker {
    overflow: hidden;
    border-top: 1px solid rgba(120, 95, 45, 0.12);
    border-bottom: 1px solid rgba(120, 95, 45, 0.12);
    background: var(--mww-bg);
    color: var(--mww-text);
  }
  .mww-ticker--fade {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }
  .mww-ticker__track {
    display: flex;
    width: max-content;
    animation: mwwTicker var(--mww-speed) linear infinite;
    will-change: transform;
  }
  /* Each copy is at least a full viewport wide, so a short list still fills the
     strip instead of leaving an empty gap part-way through the loop. */
  .mww-ticker__group {
    display: flex;
    flex: none;
    min-width: 100vw;
    justify-content: space-around;
    align-items: stretch;
  }
  .mww-ticker:hover .mww-ticker__track,
  .mww-ticker:focus-within .mww-ticker__track {
    animation-play-state: paused;
  }
  .mww-ticker__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: var(--mww-pad) calc(var(--mww-gap) / 2);
    font-size: var(--mww-size);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
  }
  .mww-ticker:not(.mww-ticker--bare) .mww-ticker__item {
    border-right: 1px solid rgba(120, 95, 45, 0.16);
  }
  .mww-ticker__icon {
    flex: none;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--mww-accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mww-ticker__icon--text {
    width: auto;
    height: auto;
    color: var(--mww-accent);
    font-size: calc(var(--mww-size) + 2px);
    line-height: 1;
  }
  @keyframes mwwTicker {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  @media (max-width: 749px) {
    .mww-ticker__item {
      letter-spacing: 0.1em;
      gap: 7px;
    }
    .mww-ticker__icon {
      width: 14px;
      height: 14px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .mww-ticker__track {
      animation: none;
      width: 100%;
    }
    .mww-ticker__group {
      min-width: 0;
      flex: 1;
      flex-wrap: wrap;
      justify-content: center;
    }
    .mww-ticker__group:last-child {
      display: none;
    }
  }
/* END_SECTION:dbtfy-ticker */

/* START_SECTION:dbtfy-trust-strip (INDEX:64) */
.mww-trust {
    background: var(--bg);
    color: var(--text);
  }
  .mww-trust__inner {
    max-width: 1300px;
    margin: auto;
    padding: 15px 24px;
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
  }
  .mww-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .mww-trust__icon {
    color: var(--accent);
  }
/* END_SECTION:dbtfy-trust-strip */

/* START_SECTION:hero-guarantee (INDEX:81) */
.mww-guarantee {
    background: var(--bg);
    color: var(--text);
    padding: var(--pt) 24px var(--pb);
  }
  .mww-guarantee__inner {
    max-width: var(--max);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .mww-guarantee__inner--panel {
    padding: 44px 48px;
    background: var(--panel);
    border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
    border-radius: var(--radius);
    box-shadow: 0 20px 46px -20px rgba(20, 29, 48, 0.18);
  }

  .mww-guarantee__seal {
    flex: none;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
      circle at 35% 30%,
      color-mix(in srgb, var(--accent) 62%, white),
      var(--accent)
    );
    box-shadow:
      0 0 0 9px color-mix(in srgb, var(--accent) 16%, transparent),
      0 12px 26px -10px color-mix(in srgb, var(--accent) 70%, transparent);
    color: #17223a;
  }
  .mww-guarantee__seal strong {
    font-family: var(--mww-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
  }
  .mww-guarantee__seal span {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .mww-guarantee__shield {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: #17223a;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mww-guarantee__copy {
    max-width: 720px;
  }
  .mww-guarantee__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .mww-guarantee__title {
    font-family: var(--mww-heading);
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--text);
  }
  .mww-guarantee__text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
  }
  .mww-guarantee__text > *:first-child {
    margin-top: 0;
  }
  .mww-guarantee__text > *:last-child {
    margin-bottom: 0;
  }

  .mww-guarantee__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 28px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
  }
  /* a real icon, so the tick keeps its colour without a ::first-letter hack */
  .mww-guarantee__check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
  }
  .mww-guarantee__check svg {
    width: 16px;
    height: 16px;
    flex: none;
    margin-top: 1px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 860px) {
    .mww-guarantee__inner {
      flex-direction: column;
      text-align: center;
      gap: 26px;
    }
    .mww-guarantee__inner--panel {
      padding: 38px 30px;
    }
    .mww-guarantee__check {
      justify-content: center;
      text-align: left;
    }
  }
  @media (max-width: 600px) {
    .mww-guarantee {
      padding-left: 16px;
      padding-right: 16px;
    }
    .mww-guarantee__inner--panel {
      padding: 32px 22px;
    }
    .mww-guarantee__checks {
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
    }
    .mww-guarantee__seal {
      width: 92px;
      height: 92px;
    }
    .mww-guarantee__seal strong {
      font-size: 29px;
    }
    .mww-guarantee__text {
      font-size: 15px;
    }
  }
/* END_SECTION:hero-guarantee */

/* CSS from block stylesheet tags */
/* START_BLOCK:_dbtfy-tiktok-video (INDEX:291) */
.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
/* END_BLOCK:_dbtfy-tiktok-video */