/* ============================================================
     ROOT TOKENS  (scoped to #bm-home so it never collides
     with the rest of the WordPress site)
  ============================================================ */
  #bm-home {
    --teal:          #2a9d8f;
    --teal-dark:     #1f7a6e;
    --teal-deep:     #123e3a;
    --teal-light:    #e8f5f2;
    --teal-glow:     rgba(42, 157, 143, 0.12);
    --cream:         #faf8f5;
    --cream-warm:    #f5f0ea;
    --charcoal:      #2c2c2c;
    --charcoal-light:#555;
    --gold:          #c9a96e;
    --rose:          #e0a4a4;
    --rose-light:    #fbeeee;
    --white:         #ffffff;
    --serif:         'Cormorant Garamond', Georgia, serif;
    --sans:          'Outfit', system-ui, sans-serif;
    --radius:        12px;
    --radius-lg:     20px;
    --shadow-soft:   0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover:  0 8px 40px rgba(42, 157, 143, 0.18);
    --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
    --transition:    200ms var(--ease-out);

    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  #bm-home, #bm-home *, #bm-home *::before, #bm-home *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  #bm-home h1, #bm-home h2, #bm-home h3, #bm-home h4, #bm-home h5, #bm-home h6 {
    font-family: var(--sans);
    font-weight: 500;
  }

  /* ============================================================
     FADE-UP ANIMATION
  ============================================================ */
  #bm-home .fu {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 280ms var(--ease-out),
                transform 280ms var(--ease-out);
  }
  #bm-home .fu.visible {
    opacity: 1;
    transform: translateY(0);
  }
  #bm-home .d1 { transition-delay: 40ms; }
  #bm-home .d2 { transition-delay: 80ms; }
  #bm-home .d3 { transition-delay: 120ms; }
  #bm-home .d4 { transition-delay: 160ms; }
  #bm-home .d5 { transition-delay: 200ms; }

  /* ============================================================
     SHARED UTILITIES
  ============================================================ */
  #bm-home .section-label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
  }

  #bm-home .btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white) !important;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 200ms var(--ease-out),
                box-shadow 200ms var(--ease-out),
                transform 160ms ease-out;
  }
  #bm-home .btn-teal:active {
    transform: scale(0.97);
  }

  #bm-home .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--teal-dark) !important;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 15px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 200ms var(--ease-out),
                box-shadow 200ms var(--ease-out),
                transform 160ms ease-out;
  }
  #bm-home .btn-white:active {
    transform: scale(0.97);
  }

  #bm-home .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--charcoal) !important;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.12);
    cursor: pointer;
    text-decoration: none !important;
    transition: background 200ms var(--ease-out),
                border-color 200ms var(--ease-out),
                color 200ms var(--ease-out),
                transform 160ms ease-out;
  }
  #bm-home .btn-ghost:active {
    transform: scale(0.97);
  }
  @media (hover: hover) and (pointer: fine) {
    #bm-home .btn-teal:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(42, 157, 143, 0.32);
    }
    #bm-home .btn-white:hover {
      background: var(--teal-light);
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    }
    #bm-home .btn-ghost:hover {
      background: var(--white);
      border-color: var(--teal);
      color: var(--teal-dark) !important;
    }
  }

  /* ============================================================
     1. HERO
  ============================================================ */
  #bm-home .bm-hero {
    position: relative;
    background:
      radial-gradient(circle at 82% 18%, rgba(42, 157, 143, 0.14) 0, transparent 34%),
      linear-gradient(135deg, var(--cream) 0%, #f2faf7 58%, var(--white) 100%);
    overflow: hidden;
    padding: 78px 40px 70px;
  }
  #bm-home .bm-hero[data-hero-theme="harmony-campaign"] {
    background:
      radial-gradient(circle at 82% 18%, rgba(255, 186, 61, 0.24) 0, transparent 34%),
      radial-gradient(circle at 12% 82%, rgba(42, 157, 143, 0.12) 0, transparent 30%),
      linear-gradient(135deg, #fff9e8 0%, #f5fbf0 55%, var(--white) 100%);
  }
  #bm-home .bm-hero[data-hero-theme="prosil-campaign"] {
    background:
      radial-gradient(circle at 82% 18%, rgba(42, 157, 143, 0.16) 0, transparent 34%),
      radial-gradient(circle at 12% 82%, rgba(79, 126, 144, 0.12) 0, transparent 30%),
      linear-gradient(135deg, #f7fbf9 0%, #eef7f5 56%, var(--white) 100%);
  }
  #bm-home .bm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(18, 62, 58, 0.045) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(18, 62, 58, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.42;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 78%);
  }
  #bm-home .bm-hero[data-hero-theme="harmony-campaign"]::before {
    background-image: linear-gradient(rgba(91, 150, 74, 0.055) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(91, 150, 74, 0.055) 1px, transparent 1px);
  }
  #bm-home .bm-hero[data-hero-theme="prosil-campaign"]::before {
    background-image: linear-gradient(rgba(42, 157, 143, 0.055) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(42, 157, 143, 0.055) 1px, transparent 1px);
  }
  #bm-home .bm-hero__slides {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
  }
  #bm-home .bm-hero__slide {
    width: 100%;
    transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
  }
  #bm-home .bm-hero__slide:not(.is-active) {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    visibility: hidden;
    transition-duration: 180ms;
  }
  #bm-home .bm-hero__slide.is-active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition-duration: 240ms;
  }
  #bm-home .bm-hero__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 70px;
    align-items: center;
  }
  #bm-home .bm-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #bm-home .bm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(42, 157, 143, 0.18);
    color: var(--teal-dark);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 10px 34px rgba(18, 62, 58, 0.08);
  }
  #bm-home .bm-hero__eyebrow .dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    #bm-home .bm-hero__eyebrow .dot {
      animation: bm-blink-dot 2s ease-in-out infinite;
    }
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__eyebrow {
    border-color: rgba(91, 150, 74, 0.22);
    color: #3e7b3d;
    box-shadow: 0 10px 34px rgba(91, 150, 74, 0.10);
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__eyebrow .dot {
    background: #f5a623;
  }
  #bm-home .bm-hero__slide--prosil-campaign .bm-hero__eyebrow {
    border-color: rgba(42, 157, 143, 0.24);
    color: var(--teal-dark);
    box-shadow: 0 10px 34px rgba(42, 157, 143, 0.12);
  }
  @keyframes bm-blink-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
  }
  #bm-home .bm-hero__h1 {
    font-family: var(--sans);
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 500;
    line-height: 1.02;
    color: var(--teal-deep);
    margin-bottom: 22px;
    max-width: 720px;
  }
  #bm-home .bm-hero__h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--teal);
  }
  #bm-home .bm-hero__h1 .bm-hero__highlight-campaign {
    color: var(--teal);
  }
  #bm-home .bm-hero__desc {
    font-family: var(--sans);
    font-size: 17.5px;
    color: var(--charcoal-light);
    max-width: 590px;
    line-height: 1.65;
    margin-bottom: 30px;
  }
  #bm-home .bm-hero__fineprint {
    max-width: 590px;
    margin: 20px 0 0;
    color: rgba(57, 71, 69, 0.72);
    font-size: 12.5px;
    line-height: 1.55;
  }
  #bm-home .bm-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  #bm-home .bm-hero__link {
    color: var(--teal-dark) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(42, 157, 143, 0.35);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
  }
  #bm-home .bm-hero__link:hover {
    color: var(--teal) !important;
    border-color: var(--teal);
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__link {
    color: #3e7b3d !important;
    border-color: rgba(91, 150, 74, 0.42);
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__link:hover {
    color: #5b964a !important;
    border-color: #5b964a;
  }
  #bm-home .bm-hero__slide--prosil-campaign .bm-hero__link {
    color: var(--teal-dark) !important;
    border-color: rgba(42, 157, 143, 0.42);
  }
  #bm-home .bm-hero__visual {
    position: relative;
    min-height: 520px;
  }
  #bm-home .bm-hero__feature {
    position: relative;
    height: 520px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(18, 62, 58, 0.16);
    background: var(--teal-deep);
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__feature {
    box-shadow: 0 28px 70px rgba(91, 150, 74, 0.16);
    background: #e7f2d9;
  }
  #bm-home .bm-hero__slide--prosil-campaign .bm-hero__feature {
    box-shadow: 0 28px 70px rgba(42, 157, 143, 0.17);
    background: #dfeceb;
  }
  #bm-home .bm-hero__feature video,
  #bm-home .bm-hero__feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.98;
  }
  #bm-home .bm-hero__gift {
    position: absolute;
    right: clamp(18px, 4vw, 46px);
    bottom: clamp(18px, 4vw, 42px);
    z-index: 3;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    width: min(380px, calc(100% - 36px));
    padding: 16px 18px 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 54px rgba(18, 62, 58, 0.20);
    backdrop-filter: blur(16px);
    color: inherit !important;
    text-decoration: none !important;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  #bm-home .bm-hero__gift:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 62px rgba(18, 62, 58, 0.24);
  }
  #bm-home .bm-hero__gift-img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(18, 62, 58, 0.18));
  }
  #bm-home .bm-hero__gift-label {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--teal);
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__gift-label {
    color: #ee5a96;
  }
  #bm-home .bm-hero__gift-title {
    display: block;
    font-size: 20px;
    font-weight: 650;
    line-height: 1.12;
    color: var(--teal-deep);
  }
  #bm-home .bm-hero__slide--harmony-campaign .bm-hero__gift-title {
    color: #9f245b;
  }
  #bm-home .bm-hero__gift-copy {
    display: block;
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 1.35;
    color: rgba(57, 71, 69, 0.70);
  }
  #bm-home .bm-hero__offers {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  #bm-home .bm-hero__offer {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(185, 47, 108, 0.14);
    backdrop-filter: blur(14px);
    color: inherit !important;
    text-decoration: none !important;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  #bm-home .bm-hero__offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(185, 47, 108, 0.20);
  }
  #bm-home .bm-hero__offer-swatch {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #cf5579;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  #bm-home .bm-hero__offer-swatch--soft {
    background: #dc99ad;
  }
  #bm-home .bm-hero__offer-img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    display: block;
  }
  #bm-home .bm-hero__offer-label {
    display: block;
    margin-bottom: 2px;
    color: #cf3f75;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1;
    text-transform: uppercase;
  }
  #bm-home .bm-hero__offer-title {
    display: block;
    color: var(--teal-deep);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
  #bm-home .bm-hero__campaign-card {
    position: absolute;
    z-index: 3;
    right: clamp(18px, 4vw, 46px);
    bottom: clamp(18px, 4vw, 42px);
    width: min(380px, calc(100% - 36px));
    min-height: 178px;
    cursor: pointer;
    pointer-events: auto;
  }
  #bm-home .bm-hero__campaign-item {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 18px 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 54px rgba(18, 62, 58, 0.20);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    visibility: hidden;
    animation: bm-campaign-fade 20s ease-in-out -0.8s infinite;
    color: inherit !important;
    pointer-events: none;
    text-decoration: none !important;
  }
  #bm-home .bm-hero__campaign-item:nth-child(2) { animation-delay: 3.2s; }
  #bm-home .bm-hero__campaign-item:nth-child(3) { animation-delay: 7.2s; }
  #bm-home .bm-hero__campaign-item:nth-child(4) { animation-delay: 11.2s; }
  #bm-home .bm-hero__campaign-item:nth-child(5) { animation-delay: 15.2s; }
  #bm-home .bm-hero__campaign-card--single {
    width: min(410px, calc(100% - 36px));
    min-height: 190px;
  }
  #bm-home .bm-hero__campaign-card--single .bm-hero__campaign-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    animation: none;
  }
  #bm-home .bm-hero__campaign-card--single {
    cursor: default;
  }
  #bm-home .bm-hero__campaign-img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(18, 62, 58, 0.18));
  }
  #bm-home .bm-hero__campaign-label {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
  }
  #bm-home .bm-hero__campaign-name {
    display: block;
    color: var(--teal-deep);
    font-size: 20px;
    font-weight: 650;
    line-height: 1.12;
  }
  #bm-home .bm-hero__campaign-prices {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 10px;
  }
  #bm-home .bm-hero__campaign-sale {
    color: var(--teal);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
  }
  #bm-home .bm-hero__campaign-regular {
    color: rgba(57, 71, 69, 0.58);
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
  }
  #bm-home .bm-hero__campaign-note {
    display: block;
    margin-top: 8px;
    color: rgba(57, 71, 69, 0.70);
    font-size: 11.5px;
    line-height: 1.35;
  }
  @keyframes bm-campaign-fade {
    0%, 100% {
      opacity: 0;
      transform: translateY(12px) scale(0.98);
      visibility: hidden;
    }
    4%, 16% {
      opacity: 1;
      transform: translateY(0) scale(1);
      visibility: visible;
    }
    20% {
      opacity: 0;
      transform: translateY(-10px) scale(0.985);
      visibility: hidden;
    }
  }
  #bm-home .bm-hero__nav {
    position: absolute;
    z-index: 4;
    left: 26px;
    right: 26px;
    top: 50%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }
  #bm-home .bm-hero__arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 157, 143, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--teal-deep);
    box-shadow: 0 16px 38px rgba(18, 62, 58, 0.14);
    cursor: pointer;
    pointer-events: auto;
    transition: background 200ms var(--ease-out),
                color 200ms var(--ease-out),
                transform 160ms ease-out;
  }
  #bm-home .bm-hero__arrow:active {
    transform: scale(0.97);
  }
  #bm-home .bm-hero[data-hero-theme="harmony-campaign"] .bm-hero__arrow {
    border-color: rgba(91, 150, 74, 0.24);
    color: #3e7b3d;
    box-shadow: 0 16px 38px rgba(91, 150, 74, 0.13);
  }
  #bm-home .bm-hero[data-hero-theme="prosil-campaign"] .bm-hero__arrow {
    border-color: rgba(42, 157, 143, 0.24);
    color: var(--teal-dark);
    box-shadow: 0 16px 38px rgba(42, 157, 143, 0.13);
  }
  @media (hover: hover) and (pointer: fine) {
    #bm-home .bm-hero__arrow:hover {
      background: var(--teal);
      color: var(--white);
      transform: translateY(-2px);
    }
    #bm-home .bm-hero[data-hero-theme="harmony-campaign"] .bm-hero__arrow:hover {
      background: #5b964a;
      color: var(--white);
    }
    #bm-home .bm-hero[data-hero-theme="prosil-campaign"] .bm-hero__arrow:hover {
      background: var(--teal);
      color: var(--white);
    }
  }
  #bm-home .bm-hero__arrow [data-lucide] {
    width: 19px;
    height: 19px;
  }

  /* ============================================================
     2. TRUST STRIP
  ============================================================ */
  #bm-home .bm-strip {
    background: var(--teal);
  }
  #bm-home .bm-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 1.2fr) repeat(3, minmax(0, 1fr));
  }
  #bm-home .bm-strip__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  #bm-home .bm-strip__item:last-child {
    border-right: none;
  }
  #bm-home .bm-strip__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  #bm-home .bm-strip__icon [data-lucide] {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.95);
  }
  #bm-home .bm-strip__logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
  }
  #bm-home .bm-strip__paylogo {
    height: 26px;
    min-width: 42px;
    padding: 5px 8px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(18, 62, 58, 0.10);
  }
  #bm-home .bm-strip__paylogo img {
    display: block;
    max-width: 54px;
    max-height: 16px;
    width: auto;
    height: auto;
  }
  #bm-home .bm-strip__paylogo--swish img {
    max-width: 58px;
  }
  #bm-home .bm-strip__paylogo--postnord img {
    max-width: 72px;
    max-height: 16px;
  }
  #bm-home .bm-strip__item:first-child .bm-strip__logos {
    flex-wrap: nowrap;
    gap: 5px;
  }
  #bm-home .bm-strip__item:first-child .bm-strip__paylogo {
    min-width: 0;
    padding: 4px 7px;
  }
  #bm-home .bm-strip__item:first-child .bm-strip__paylogo img {
    max-width: 50px;
    max-height: 15px;
  }
  #bm-home .bm-strip__item:first-child .bm-strip__paylogo--swish img {
    max-width: 54px;
  }
  #bm-home .bm-strip__title {
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
  }
  #bm-home .bm-strip__sub {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 2px;
  }

  /* ============================================================
     3. INTRO TEXT
  ============================================================ */
  #bm-home .bm-intro {
    background: var(--cream);
    padding: 110px 40px 90px;
    text-align: center;
  }
  #bm-home .bm-intro__inner {
    max-width: 820px;
    margin: 0 auto;
  }
  #bm-home .bm-intro__h2 {
    font-family: var(--sans);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 26px;
  }
  #bm-home .bm-intro__h2 em {
    font-style: italic;
    color: var(--teal);
  }
  #bm-home .bm-intro__p {
    font-family: var(--sans);
    font-size: 16.5px;
    color: var(--charcoal-light);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
  }

  /* ============================================================
     4. BRAND UNIVERSES (FilVel · Ärrvård)
  ============================================================ */
  #bm-home .bm-universes {
    background: var(--cream);
    padding: 0 24px 110px;
  }
  #bm-home .bm-universes__grid {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  #bm-home .bm-universes__grid > .bm-universe:nth-child(n+3) {
    display: none !important;
  }
  #bm-home .bm-universe {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    aspect-ratio: 2 / 1;
    min-height: 600px;
    text-decoration: none !important;
    color: var(--white) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 18px 52px rgba(18, 62, 58, 0.08);
  }
  #bm-home .bm-universe:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(18, 62, 58, 0.18);
  }
  #bm-home .bm-universe__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  #bm-home .bm-universe__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  #bm-home .bm-universe:hover .bm-universe__bg img {
    transform: scale(1.06);
  }
  #bm-home .bm-universe__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to top,
      rgba(18, 62, 58, 0.84) 0%,
      rgba(18, 62, 58, 0.46) 46%,
      rgba(18, 62, 58, 0.08) 100%
    );
  }
  #bm-home .bm-universe__content {
    position: relative;
    z-index: 2;
    padding: clamp(30px, 4vw, 58px);
    max-width: 620px;
  }
  #bm-home .bm-universe__brand {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 12px;
  }
  #bm-home .bm-universe__title {
    font-family: var(--sans);
    font-size: clamp(30px, 2.7vw, 40px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
  }
  #bm-home .bm-universe__title em {
    font-style: italic;
    color: rgba(255,255,255,0.86);
  }
  #bm-home .bm-universe__desc {
    display: none;
  }
  #bm-home .bm-universe__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--white);
    padding: 11px 22px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition);
  }
  #bm-home .bm-universe:hover .bm-universe__cta {
    background: var(--white);
    color: var(--teal-dark);
  }
  #bm-home .bm-universe__cta [data-lucide] {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
  }
  #bm-home .bm-universe:hover .bm-universe__cta [data-lucide] {
    transform: translateX(3px);
    stroke: var(--teal-dark);
  }

  /* ============================================================
     5. BESTSELLERS GRID
  ============================================================ */
  #bm-home .bm-products {
    background: var(--white);
    padding: 110px 40px 90px;
  }
  #bm-home .bm-products__header {
    text-align: center;
    margin-bottom: 56px;
  }
  #bm-home .bm-products__h2 {
    font-family: var(--sans);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 14px;
  }
  #bm-home .bm-products__h2 em {
    font-style: italic;
    color: var(--teal);
  }
  #bm-home .bm-products__sub {
    font-family: var(--sans);
    font-size: 15.5px;
    color: var(--charcoal-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
  }
  #bm-home .bm-products__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  #bm-home .bm-pcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(42, 157, 143, 0.10);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: var(--charcoal) !important;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
  }
  #bm-home .bm-pcard::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  #bm-home .bm-pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }
  #bm-home .bm-pcard:hover::after {
    transform: scaleX(1);
  }
  #bm-home .bm-pcard:hover .bm-pcard__img img {
    transform: scale(1.06);
  }
  #bm-home .bm-pcard__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--white);
    color: var(--teal-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  #bm-home .bm-pcard__img {
    background: linear-gradient(145deg, var(--teal-light), var(--cream-warm));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
  }
  #bm-home .bm-pcard__img img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.10));
  }
  #bm-home .bm-pcard__body {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  #bm-home .bm-pcard__brand {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
  }
  #bm-home .bm-pcard__name {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
  }
  #bm-home .bm-pcard__tagline {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--charcoal-light);
    line-height: 1.4;
  }
  #bm-home .bm-pcard__footer {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #bm-home .bm-pcard__price {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-dark);
  }
  #bm-home .bm-pcard__arrow {
    width: 32px;
    height: 32px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
  }
  #bm-home .bm-pcard:hover .bm-pcard__arrow {
    background: var(--teal);
    transform: translateX(3px);
  }
  #bm-home .bm-pcard__arrow [data-lucide] {
    width: 15px;
    height: 15px;
    stroke: var(--teal);
    transition: stroke var(--transition);
  }
  #bm-home .bm-pcard:hover .bm-pcard__arrow [data-lucide] {
    stroke: var(--white);
  }
  #bm-home .bm-products__cta {
    text-align: center;
    margin-top: 48px;
  }

  /* ============================================================
     6. CATEGORY TILES
  ============================================================ */
  #bm-home .bm-cats {
    background: var(--white);
    padding: 110px 40px;
  }
  #bm-home .bm-cats__header {
    text-align: center;
    margin-bottom: 52px;
  }
  #bm-home .bm-cats__h2 {
    font-family: var(--sans);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 12px;
  }
  #bm-home .bm-cats__h2 em {
    font-style: italic;
    color: var(--teal);
  }
  #bm-home .bm-cats__sub {
    font-family: var(--sans);
    font-size: 15.5px;
    color: var(--charcoal-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
  }
  #bm-home .bm-cats__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  #bm-home .bm-cat {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none !important;
    color: var(--white) !important;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-soft);
  }
  #bm-home .bm-cat:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  }
  #bm-home .bm-cat__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  #bm-home .bm-cat__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  #bm-home .bm-cat:hover .bm-cat__bg img {
    transform: scale(1.06);
  }
  #bm-home .bm-cat__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to top,
      rgba(18, 62, 58, 0.86) 0%,
      rgba(18, 62, 58, 0.30) 50%,
      rgba(18, 62, 58, 0.05) 100%
    );
  }
  #bm-home .bm-cat__content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px;
  }
  #bm-home .bm-cat__title {
    font-family: var(--sans);
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 14px;
  }
  #bm-home .bm-cat__title em {
    font-style: italic;
    color: rgba(255,255,255,0.85);
  }
  #bm-home .bm-cat__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--white);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.55);
    transition: color var(--transition), border-color var(--transition);
  }
  #bm-home .bm-cat__cta [data-lucide] {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
  }
  #bm-home .bm-cat:hover .bm-cat__cta [data-lucide] {
    transform: translateX(4px);
  }

  /* ============================================================
     7. LIFESTYLE BAND  ("Vetenskap möter välmående")
  ============================================================ */
  #bm-home .bm-band {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  #bm-home .bm-band__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  #bm-home .bm-band__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  #bm-home .bm-band__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      105deg,
      rgba(18, 62, 58, 0.88) 0%,
      rgba(18, 62, 58, 0.62) 42%,
      rgba(18, 62, 58, 0.15) 72%,
      transparent 100%
    );
  }
  #bm-home .bm-band__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
  }
  #bm-home .bm-band__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
  }
  #bm-home .bm-band__h2 {
    font-family: var(--sans);
    font-size: clamp(34px, 3.8vw, 56px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    max-width: 560px;
    margin-bottom: 20px;
  }
  #bm-home .bm-band__h2 em {
    font-style: italic;
    color: rgba(255,255,255,0.8);
  }
  #bm-home .bm-band__p {
    font-family: var(--sans);
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 460px;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  /* ============================================================
     8. SUPPLEMENTS / SECONDARY PRODUCTS GRID
  ============================================================ */
  #bm-home .bm-supps {
    background: var(--cream-warm);
    padding: 110px 40px 90px;
    position: relative;
    overflow: hidden;
  }
  #bm-home .bm-supps::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  #bm-home .bm-supps__header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
  }
  #bm-home .bm-supps__h2 {
    font-family: var(--sans);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 14px;
  }
  #bm-home .bm-supps__h2 em {
    font-style: italic;
    color: var(--teal);
  }
  #bm-home .bm-supps__sub {
    font-family: var(--sans);
    font-size: 15.5px;
    color: var(--charcoal-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
  }
  #bm-home .bm-supps__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  #bm-home .bm-supps__cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
  }

  /* ============================================================
     9. ARTICLES / RÅDGIVARE
  ============================================================ */
  #bm-home .bm-articles {
    background: var(--white);
    padding: 110px 40px;
  }
  #bm-home .bm-articles__header {
    text-align: center;
    margin-bottom: 56px;
  }
  #bm-home .bm-articles__h2 {
    font-family: var(--sans);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 14px;
  }
  #bm-home .bm-articles__h2 em {
    font-style: italic;
    color: var(--teal);
  }
  #bm-home .bm-articles__sub {
    font-family: var(--sans);
    font-size: 15.5px;
    color: var(--charcoal-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
  }
  #bm-home .bm-articles__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  #bm-home .bm-acard {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-soft);
    text-decoration: none !important;
    color: var(--charcoal) !important;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  #bm-home .bm-acard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  #bm-home .bm-acard__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream);
  }
  #bm-home .bm-acard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #bm-home .bm-acard:hover .bm-acard__img img {
    transform: scale(1.05);
  }
  #bm-home .bm-acard__body {
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  #bm-home .bm-acard__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--teal);
  }
  #bm-home .bm-acard__meta-sep {
    width: 4px; height: 4px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.5;
  }
  #bm-home .bm-acard__meta-date {
    color: var(--charcoal-light);
    font-weight: 500;
  }
  #bm-home .bm-acard__title {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--charcoal);
  }
  #bm-home .bm-acard__excerpt {
    font-size: 14px;
    color: var(--charcoal-light);
    line-height: 1.65;
  }
  #bm-home .bm-acard__readmore {
    margin-top: auto;
    padding-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-dark);
  }
  #bm-home .bm-acard__readmore [data-lucide] {
    width: 14px; height: 14px;
    transition: transform var(--transition);
  }
  #bm-home .bm-acard:hover .bm-acard__readmore [data-lucide] {
    transform: translateX(4px);
  }

  /* ============================================================
     10. FINAL CTA
  ============================================================ */
  #bm-home .bm-cta {
    position: relative;
    padding: 130px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 540px;
  }
  #bm-home .bm-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  #bm-home .bm-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }
  #bm-home .bm-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(18, 62, 58, 0.88);
  }
  #bm-home .bm-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
  }
  #bm-home .bm-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
  }
  #bm-home .bm-cta__h2 {
    font-family: var(--sans);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
  }
  #bm-home .bm-cta__h2 em {
    font-style: italic;
    color: rgba(255,255,255,0.88);
  }
  #bm-home .bm-cta__p {
    font-family: var(--sans);
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 40px;
    line-height: 1.65;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  #bm-home .bm-cta__note {
    margin-top: 22px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.50);
    letter-spacing: 0.5px;
  }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 1100px) {
    #bm-home .bm-hero__inner {
      grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
      gap: 34px;
    }
    #bm-home .bm-products__grid,
    #bm-home .bm-supps__grid {
      grid-template-columns: repeat(3, 1fr);
    }
    #bm-home .bm-cats__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    #bm-home .bm-strip__inner {
      grid-template-columns: repeat(2, 1fr);
    }
    #bm-home .bm-strip__item:first-child .bm-strip__logos {
      flex-wrap: wrap;
    }
    #bm-home .bm-strip__item:nth-child(2) {
      border-right: none;
    }
    #bm-home .bm-strip__item:nth-child(3) {
      border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
    #bm-home .bm-strip__item:nth-child(3) {
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }
    #bm-home .bm-strip__item:nth-child(4) {
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      border-right: none;
    }
  }
  @media (max-width: 960px) {
    #bm-home .bm-hero {
      padding: 64px 32px 56px;
    }
    #bm-home .bm-hero__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }
    #bm-home .bm-hero__visual {
      min-height: 500px;
      max-width: 620px;
      width: 100%;
      margin: 0 auto;
    }
    #bm-home .bm-hero__feature {
      height: 500px;
    }
    #bm-home .bm-hero__gift {
      right: 22px;
      bottom: 22px;
    }
    #bm-home .bm-hero__offers {
      left: 18px;
      right: 18px;
      bottom: 18px;
    }
    #bm-home .bm-hero__campaign-card {
      right: 22px;
      bottom: 22px;
    }
    #bm-home .bm-universes__grid {
      grid-template-columns: 1fr !important;
    }
    #bm-home .bm-universe {
      aspect-ratio: 16 / 10;
      min-height: 380px;
    }
    #bm-home .bm-articles__grid {
      grid-template-columns: 1fr;
    }
    #bm-home .bm-products__grid,
    #bm-home .bm-supps__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    #bm-home .bm-band__content {
      padding: 0 40px;
    }
    #bm-home .bm-intro,
    #bm-home .bm-products,
    #bm-home .bm-cats,
    #bm-home .bm-supps,
    #bm-home .bm-articles {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }
  @media (max-width: 640px) {
    #bm-home .bm-hero {
      padding: 48px 20px 42px;
    }
    #bm-home .bm-hero__nav {
      position: relative;
      inset: auto;
      max-width: 1280px;
      margin: 24px auto 0;
      transform: none;
      justify-content: center;
      gap: 12px;
    }
    #bm-home .bm-hero__arrow {
      width: 42px;
      height: 42px;
    }
    #bm-home .bm-hero__h1 {
      font-size: clamp(36px, 11vw, 54px);
    }
    #bm-home .bm-hero__desc {
      font-size: 15px;
    }
    #bm-home .bm-hero__eyebrow {
      font-size: 10px;
      letter-spacing: 1.2px;
      padding: 7px 12px;
    }
    #bm-home .bm-hero__cta-row {
      width: 100%;
      align-items: stretch;
    }
    #bm-home .bm-hero__cta-row .btn-teal {
      justify-content: center;
      width: 100%;
    }
    #bm-home .bm-hero__link {
      align-self: center;
    }
    #bm-home .bm-hero__visual {
      min-height: auto;
    }
    #bm-home .bm-hero__feature {
      height: 360px;
      border-radius: 22px;
    }
    #bm-home .bm-hero__gift {
      right: 12px;
      left: 12px;
      bottom: 14px;
      width: auto;
      grid-template-columns: 86px minmax(0, 1fr);
      gap: 10px;
      padding: 11px 12px 11px 8px;
      border-radius: 16px;
    }
    #bm-home .bm-hero__gift-img {
      width: 86px;
      height: 86px;
    }
    #bm-home .bm-hero__gift-title {
      font-size: 15px;
    }
    #bm-home .bm-hero__gift-copy {
      font-size: 10.5px;
    }
    #bm-home .bm-hero__offers {
      right: 12px;
      left: 12px;
      bottom: 14px;
      grid-template-columns: 1fr;
    }
    #bm-home .bm-hero__campaign-card {
      right: 12px;
      left: 12px;
      bottom: 14px;
      width: auto;
      min-height: 132px;
    }
    #bm-home .bm-hero__campaign-item {
      grid-template-columns: 86px minmax(0, 1fr);
      gap: 10px;
      padding: 11px 12px 11px 8px;
      border-radius: 16px;
    }
    #bm-home .bm-hero__campaign-img {
      width: 86px;
      height: 86px;
    }
    #bm-home .bm-hero__campaign-name {
      font-size: 15px;
    }
    #bm-home .bm-hero__campaign-sale {
      font-size: 23px;
    }
    #bm-home .bm-hero__campaign-regular {
      font-size: 12px;
    }
    #bm-home .bm-hero__campaign-note {
      font-size: 10.5px;
    }
    #bm-home .bm-hero__offer {
      grid-template-columns: 42px minmax(0, 1fr);
      padding: 9px 10px;
    }
    #bm-home .bm-hero__offer-swatch {
      width: 34px;
      height: 34px;
    }
    #bm-home .bm-hero__offer-title {
      font-size: 13px;
    }
    #bm-home .bm-strip__item {
      padding: 22px 18px;
      gap: 10px;
    }
    #bm-home .bm-strip__logos {
      gap: 5px;
    }
    #bm-home .bm-strip__paylogo {
      height: 24px;
      min-width: 38px;
      padding: 4px 7px;
    }
    #bm-home .bm-strip__paylogo img {
      max-width: 48px;
      max-height: 14px;
    }
    #bm-home .bm-strip__title {
      font-size: 12px;
    }
    #bm-home .bm-intro {
      padding: 64px 24px;
    }
    #bm-home .bm-universes {
      padding: 0 20px 70px;
    }
    #bm-home .bm-universes__grid {
      gap: 18px;
    }
    #bm-home .bm-universe {
      min-height: 340px;
      border-radius: 16px;
    }
    #bm-home .bm-universe__content {
      padding: 28px;
    }
    #bm-home .bm-products {
      padding: 60px 20px;
    }
    #bm-home .bm-cats {
      padding: 60px 20px;
    }
    #bm-home .bm-cats__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    #bm-home .bm-cat {
      aspect-ratio: 16 / 10;
    }
    #bm-home .bm-products__grid,
    #bm-home .bm-supps__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    #bm-home .bm-pcard__body {
      padding: 14px 14px 18px;
    }
    #bm-home .bm-pcard__name {
      font-size: 16px;
    }
    #bm-home .bm-band {
      height: auto;
      padding: 64px 24px;
    }
    #bm-home .bm-band__content {
      padding: 0;
    }
    #bm-home .bm-supps {
      padding: 60px 20px;
    }
    #bm-home .bm-articles {
      padding: 60px 20px;
    }
    #bm-home .bm-cta {
      padding: 80px 24px;
    }
  }
  @media (max-width: 380px) {
    #bm-home .bm-products__grid,
    #bm-home .bm-supps__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    #bm-home .bm-strip__inner {
      grid-template-columns: 1fr;
    }
    #bm-home .bm-strip__item {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #bm-home .fu,
    #bm-home .bm-hero__slide,
    #bm-home .btn-teal,
    #bm-home .btn-white,
    #bm-home .btn-ghost,
    #bm-home .bm-hero__arrow {
      transition-duration: 0.01ms;
      transition-property: background, border-color, color, opacity, box-shadow;
    }
    #bm-home .fu,
    #bm-home .fu.visible,
    #bm-home .bm-hero__slide,
    #bm-home .bm-hero__slide:not(.is-active),
    #bm-home .bm-hero__slide.is-active,
    #bm-home .btn-teal:active,
    #bm-home .btn-white:active,
    #bm-home .btn-ghost:active,
    #bm-home .bm-hero__arrow:active {
      transform: none;
    }
    #bm-home .bm-hero__eyebrow .dot {
      animation: none;
    }
  }
