/** Shopify CDN: Minification failed

Line 300:0 Unexpected "}"

**/
/* MyBoost product page (sections/mb-product-main.liquid). Tokens come from mb-shell.css.
   Gradient only on the primary button (shell) and the projection bar. Selections and ticks use ink. */
.mba-product { padding-block: 8px 32px; font-family: var(--mba-font); color: var(--mba-ink); -webkit-font-smoothing: antialiased; }
.mba-product *, .mba-product *::before, .mba-product *::after { box-sizing: border-box; }
.mba-product :is(h1, h2, h3, p, legend, strong) { color: inherit; }
.mba-product :focus-visible { outline: 3px solid var(--mba-focus); outline-offset: 3px; }
.mba-product [hidden] { display: none !important; }
.mba-product__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "media" "main"; gap: 12px; }
.mba-product__head { grid-area: head; display: flex; align-items: center; gap: 12px; min-width: 0; }
.mba-product__head .mba-brand { width: 30px; height: 30px; }
.mba-product__title { margin: 0; font: 800 30px/1 var(--mba-font); letter-spacing: -.05em; text-transform: uppercase; overflow-wrap: anywhere; }
.mba-product__left { display: contents; }
.mba-product__media { grid-area: media; min-width: 0; }
.mba-product__main { grid-area: main; display: grid; gap: 14px; min-width: 0; }
.mba-product__form { display: grid; gap: 14px; min-width: 0; margin: 0; }

/* Carousel */
.mba-media__frame { position: relative; }
.mba-media__track {
  display: flex; gap: 10px; margin: 0; padding: 0; list-style: none;
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.mba-media__track::-webkit-scrollbar { display: none; }
/* One slide fills the frame: nothing of the next visual shows until the customer swipes. */
.mba-media__slide { flex: 0 0 100%; aspect-ratio: 1; overflow: hidden; border-radius: var(--mba-r-card); background: var(--mba-surface); scroll-snap-align: start; }
.mba-media__slide img { display: block; width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; }
/* Dragging with the mouse fights mandatory snapping, so the track un-snaps until the button is released. */
.mba-media__track.is-dragging { scroll-snap-type: none; scroll-behavior: auto; cursor: grabbing; }
/* The arrows frame the thumbnail strip, one on each side. Both stay put: a symmetric pair reads
   better than one that comes and goes, so the one at the end of the run only dims. */
.mba-media__nav {
  flex: none; display: grid; place-items: center; width: 34px; height: 34px; padding: 0;
  border: 1px solid var(--mba-line); border-radius: 50%; background: #fff; color: var(--mba-ink);
  cursor: pointer; transition: opacity .18s, border-color .18s;
}
.mba-media__nav .mba-icon { width: 16px; height: 16px; }
.mba-media__nav[disabled] { opacity: .3; cursor: default; }
.mba-media__nav:focus-visible { outline: 3px solid var(--mba-focus); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) { .mba-media__nav:not([disabled]):hover { border-color: var(--mba-ink); } }
@media (prefers-reduced-motion: reduce) { .mba-media__nav { transition: none; } }
.mba-media__bar { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; margin-top: 10px; }
.mba-media__thumbs { display: flex; align-items: center; justify-content: center; gap: 8px; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.mba-media__thumbs::-webkit-scrollbar { display: none; }
.mba-media__thumb { flex: none; width: 48px; height: 48px; padding: 0; overflow: hidden; border: 0; border-radius: 13px; background: var(--mba-surface); box-shadow: inset 0 0 0 1px var(--mba-line); opacity: .55; cursor: pointer; transition: opacity .2s, box-shadow .2s; }
.mba-media__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mba-media__thumb[aria-current="true"] { opacity: 1; box-shadow: inset 0 0 0 2px var(--mba-ink); }
.mba-media__thumb:focus-visible { outline: 3px solid var(--mba-focus); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) { .mba-media__thumb:hover { opacity: 1; } }
.mba-media__tile { position: relative; display: grid; place-items: center; width: 100%; aspect-ratio: 1; border-radius: var(--mba-r-card); background: #F1EEF5; }
.mba-media__glyph .mba-icon { width: 96px; height: 96px; stroke-width: 1.2; }
.mba-media__brand { position: absolute; right: 16px; bottom: 16px; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: #fff; box-shadow: var(--mba-shadow-card); }
.mba-media__brand .mba-brand { width: 30px; height: 30px; }

/* Steps */
.mba-pstep { min-width: 0; margin: 0; padding: 16px; border: 1px solid var(--mba-line); border-radius: var(--mba-r-card); background: #fff; }
.mba-pstep__title { display: flex; align-items: center; gap: 10px; float: left; width: 100%; margin: 0 0 12px; padding: 0; font: 800 17px/1.2 var(--mba-font); letter-spacing: -.02em; }
.mba-pstep__title + * { clear: both; }
.mba-pstep__num { display: grid; place-items: center; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mba-ink); color: #fff; font: 800 13px/1 var(--mba-font); letter-spacing: 0; }
.mba-pstep__hint { display: flex; align-items: flex-start; gap: 6px; margin: 8px 0 0; color: var(--mba-muted); font: 500 13px/1.45 var(--mba-font); }
.mba-pstep__hint .mba-icon { width: 16px; height: 16px; margin-top: 1px; }
.mba-link__ok { color: #0B6E4B; font-weight: 600; }

/* Fields */
.mba-account__field {
  display: flex; align-items: center; gap: 4px; min-height: 54px; padding: 0 14px;
  border: 1.5px solid var(--mba-line); border-radius: var(--mba-r-control); background: #fff; cursor: text;
}
.mba-account__field:focus-within { border-color: var(--mba-focus); }
.mba-account__field:has(input[aria-invalid="true"]) { border-color: var(--mba-danger); }
.mba-account__at { color: var(--mba-muted); font: 700 17px/1 var(--mba-font); }
.mba-account__field input { flex: 1; min-width: 0; height: 50px; margin: 0; padding: 0; border: 0; background: transparent; color: var(--mba-ink); font: 600 16px/1 var(--mba-font); }
.mba-account__field input:focus { outline: none; }
.mba-product .mba-field { display: grid; gap: 6px; }
.mba-product .mba-field input { width: 100%; background: #fff; }
.mba-field__label { color: var(--mba-muted); font: 700 13px/1.2 var(--mba-font); }
.mba-product .mba-field__error { min-height: 0; margin-top: 6px; }
.mba-product .mba-field__error:empty { display: none; }
.mba-account__output:not(:empty) { margin-top: 12px; }

/* Check states */
.mba-check { display: grid; gap: 8px; padding: 14px; border-radius: 16px; background: var(--mba-surface); font: 500 14px/1.45 var(--mba-font); }
.mba-check__line { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--mba-muted); font-weight: 600; }
.mba-check__title { display: flex; align-items: center; gap: 8px; margin: 0; font: 800 15px/1.3 var(--mba-font); }
.mba-check__title .mba-icon { width: 18px; height: 18px; flex: none; }
.mba-check__text { margin: 0; }
.mba-check__steps { display: grid; gap: 6px; margin: 2px 0 0; padding: 0; list-style: none; counter-reset: mba-howto; }
.mba-check__steps li { display: flex; align-items: baseline; gap: 10px; font-weight: 600; counter-increment: mba-howto; }
.mba-check__steps li::before {
  content: counter(mba-howto); display: grid; place-items: center; flex: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--mba-ink); color: #fff; font: 800 12px/22px var(--mba-font); text-align: center;
}
.mba-check__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.mba-check__actions .mba-btn { min-height: 44px; padding: 0 16px; font-size: 14px; }
.mba-check__actions .mba-icon { width: 18px; height: 18px; }
.mba-check--public { background: #E3F5EC; }
.mba-check--private { background: #FFF6E8; }
.mba-check--private .mba-check__title { color: #8A4B00; }
.mba-check--error { background: #FDF0F2; }
.mba-check--error .mba-check__title, .mba-check--error .mba-check__text:only-child { color: #B4233F; }
.mba-check--info { background: #F1F8FE; }
.mba-check--info .mba-check__title { color: #1F5F8F; }
.mba-spinner { flex: none; width: 18px; height: 18px; border: 2.5px solid var(--mba-line); border-top-color: var(--mba-ink); border-radius: 50%; animation: mba-spin .8s linear infinite; }
@keyframes mba-spin { to { transform: rotate(360deg); } }

/* Profile card */
.mba-profile { display: flex; align-items: center; gap: 12px; }
.mba-profile__avatar { display: block; flex: none; width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #F1EEF5; }
.mba-profile__body { flex: 1; min-width: 0; }
.mba-profile__name { display: flex; align-items: center; gap: 4px; margin: 0; font: 800 15px/1.2 var(--mba-font); overflow-wrap: anywhere; }
.mba-profile__verified { display: inline-grid; place-items: center; flex: none; width: 16px; height: 16px; border-radius: 50%; background: #1F5F8F; }
.mba-profile__verified .mba-icon { width: 11px; height: 11px; stroke: #fff; stroke-width: 3; }
.mba-profile__stats { display: flex; flex-wrap: wrap; gap: 2px 10px; margin: 2px 0 0; color: var(--mba-muted); font: 600 13px/1.3 var(--mba-font); }
.mba-profile__stats span { white-space: nowrap; }
.mba-profile__stats span:empty { display: none; }
.mba-state { display: inline-flex; align-items: center; gap: 4px; flex: none; padding: 6px 10px; border-radius: var(--mba-r-pill); background: #fff; color: #0B6E4B; font: 800 12px/1 var(--mba-font); }
.mba-state .mba-icon { width: 14px; height: 14px; stroke-width: 2.6; }
.mba-profile--skeleton .mba-profile__avatar, .mba-profile__lines span, .mba-posts__placeholder {
  background: linear-gradient(90deg, #ECE6F2 25%, #F7F5FB 50%, #ECE6F2 75%); background-size: 200% 100%; animation: mba-shimmer 1.2s linear infinite;
}
.mba-profile__lines { display: grid; flex: 1; gap: 6px; }
.mba-profile__lines span { display: block; height: 10px; border-radius: 6px; }
.mba-profile__lines span:first-child { width: 55%; }
.mba-profile__lines span:last-child { width: 35%; }
@keyframes mba-shimmer { to { background-position: -200% 0; } }

/* Projection */
.mba-projection { display: grid; gap: 6px; padding-top: 10px; border-top: 1px solid rgba(15, 138, 95, .18); }
.mba-projection__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 8px; margin: 0; font: 600 13.5px/1.2 var(--mba-font); }
.mba-projection__row strong { font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mba-projection__bar { display: flex; justify-content: flex-end; height: 8px; overflow: hidden; border-radius: 8px; background: #CFE9DC; }
.mba-projection__bar span { display: block; width: var(--mba-progress, 0%); height: 100%; border-radius: inherit; background: var(--mba-grad); transition: width .5s var(--mba-spring); }
.mba-projection__note { margin: 0; color: var(--mba-muted); font: 500 12px/1.4 var(--mba-font); }

/* Posts */
.mba-posts:disabled .mba-pstep__title { color: var(--mba-muted); }
.mba-posts:disabled .mba-pstep__num { background: var(--mba-muted); }
.mba-posts__locked { margin: 0; }
.mba-posts__body { clear: both; }
.mba-posts__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin: 0 0 12px; padding: 0; list-style: none; }
.mba-posts__grid:empty { display: none; }
.mba-posts__placeholder { aspect-ratio: 3 / 4; border-radius: 12px; }
.mba-post { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 12px; background: #F1EEF5; cursor: pointer; }
.mba-post input { position: absolute; opacity: 0; pointer-events: none; }
.mba-post img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mba-post__meta { position: absolute; left: 6px; bottom: 6px; display: inline-flex; align-items: center; gap: 3px; padding: 4px 7px; border-radius: var(--mba-r-pill); background: rgba(26, 15, 36, .72); color: #fff; font: 700 11px/1 var(--mba-font); white-space: nowrap; }
.mba-post__meta:has([data-mba-post-count]:empty) { display: none; }
.mba-post__meta .mba-icon { width: 12px; height: 12px; }
.mba-post__tick { position: absolute; top: 6px; right: 6px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--mba-ink); opacity: 0; transform: scale(.6); transition: opacity .15s, transform .15s var(--mba-spring); }
.mba-post__tick .mba-icon { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; }
.mba-post:has(input:checked) { box-shadow: 0 0 0 3px var(--mba-ink); }
.mba-post:has(input:checked) .mba-post__tick { opacity: 1; transform: none; }
.mba-post:has(input:focus-visible) { outline: 3px solid var(--mba-focus); outline-offset: 3px; }

/* Packs */
.mba-packs__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.mba-pack {
  position: relative; display: grid; align-content: start; justify-items: start; gap: 6px; min-height: 96px; margin: 0; padding: 12px;
  border: 1.5px solid var(--mba-line); border-radius: 16px; background: #fff; cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.mba-pack input { position: absolute; opacity: 0; pointer-events: none; }
.mba-pack__qty { padding-right: 26px; font: 800 19px/1 var(--mba-font); letter-spacing: -.03em; white-space: nowrap; }
.mba-pack__qty small { color: var(--mba-muted); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.mba-pack__bonus { padding: 4px 8px; border-radius: var(--mba-r-pill); background: #F1EEF5; font: 700 11.5px/1 var(--mba-font); white-space: nowrap; }
.mba-pack__price { margin-top: auto; font: 700 14px/1 var(--mba-font); white-space: nowrap; }
.mba-pack__soldout { color: var(--mba-muted); font: 600 12px/1 var(--mba-font); }
.mba-pack__tick { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 22px; height: 22px; border: 1.5px solid var(--mba-line); border-radius: 50%; }
.mba-pack__tick .mba-icon { width: 13px; height: 13px; stroke: #fff; stroke-width: 3; opacity: 0; }
.mba-pack:has(input:checked) { border-color: var(--mba-ink); box-shadow: inset 0 0 0 1px var(--mba-ink); }
.mba-pack:has(input:checked) .mba-pack__tick { border-color: var(--mba-ink); background: var(--mba-ink); }
.mba-pack:has(input:checked) .mba-pack__tick .mba-icon { opacity: 1; }
.mba-pack:has(input:focus-visible) { outline: 3px solid var(--mba-focus); outline-offset: 2px; }
.mba-pack:has(input:disabled) { opacity: .5; cursor: not-allowed; }
.mba-packs:not(.is-expanded) .mba-pack--more:not(.is-kept) { display: none; }
.no-js .mba-packs .mba-pack--more { display: grid; }
.mba-packs__more {
  display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; min-height: 44px; margin-top: 8px;
  border: 0; border-radius: var(--mba-r-pill); background: #F1EEF5; color: var(--mba-ink); font: 700 14px/1 var(--mba-font); cursor: pointer;
}
.mba-packs__more .mba-icon { width: 16px; height: 16px; transition: transform .18s ease; }
.mba-packs__more[aria-expanded="true"] .mba-icon { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) { .mba-packs__more .mba-icon { transition: none; } }
.no-js .mba-packs__more { display: none; }

/* Rhythm */
.mba-segment { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; border-radius: var(--mba-r-pill); background: #F1EEF5; }
.mba-segment__option { position: relative; display: grid; place-items: center; min-height: 44px; margin: 0; padding: 0 8px; border-radius: var(--mba-r-pill); font: 700 14px/1.1 var(--mba-font); text-align: center; cursor: pointer; }
.mba-segment__option input { position: absolute; opacity: 0; pointer-events: none; }
.mba-segment__option:has(input:checked) { background: #fff; box-shadow: inset 0 0 0 1.5px var(--mba-ink); }
.mba-segment__option:has(input:focus-visible) { outline: 3px solid var(--mba-focus); outline-offset: 2px; }
.mba-segment--labelled .mba-segment__option { gap: 2px; align-content: center; min-height: 56px; padding: 8px; border-radius: 18px; }
.mba-segment--labelled { border-radius: 22px; }
.mba-segment__kind { color: var(--mba-muted); font: 800 10.5px/1.1 var(--mba-font); letter-spacing: .06em; text-transform: uppercase; }
.mba-segment__option:has(input:checked) .mba-segment__kind { color: var(--mba-ink); }
.mba-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; padding: 12px 14px; border: 1.5px solid var(--mba-ink); border-radius: 14px; background: #fff; font: 600 14px/1.4 var(--mba-font); cursor: pointer; }
.mba-consent[hidden] { display: none; }
.mba-consent input { flex: none; width: 20px; height: 20px; margin: 0; accent-color: var(--mba-ink); }

/* Buy box */
.mba-buy { display: grid; gap: 12px; padding: 16px; border: 1px solid var(--mba-line); border-radius: var(--mba-r-card); background: #fff; box-shadow: var(--mba-shadow-card); }
.mba-buy__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 12px; }
.mba-buy__price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.mba-buy__amount { font: 800 26px/1 var(--mba-font); letter-spacing: -.03em; white-space: nowrap; }
.mba-buy__compare { color: var(--mba-muted); font: 600 15px/1 var(--mba-font); white-space: nowrap; }
.mba-buy__summary { margin: 0; color: var(--mba-muted); font: 700 14px/1.3 var(--mba-font); }
.mba-buy__each { margin: -6px 0 0; color: var(--mba-muted); font: 600 13px/1.3 var(--mba-font); }
.mba-buy__each:empty { display: none; }
.mba-buy__reason { margin: -4px 0 0; color: #8A4B00; font: 700 13.5px/1.35 var(--mba-font); text-align: center; }
.mba-buy__reason:empty, .mba-buy__error:empty { display: none; }
.mba-buy__actions { display: grid; gap: 8px; }
.mba-buy .mba-btn { min-height: 52px; }
.mba-buy .mba-btn .mba-icon { width: 20px; height: 20px; }
.mba-btn--outline { background: #fff; color: var(--mba-ink); box-shadow: inset 0 0 0 1.5px var(--mba-ink); }
.mba-btn.is-loading { opacity: .7; pointer-events: none; }
.mba-buy__error { margin: 0; color: var(--mba-danger); font: 600 13px/1.4 var(--mba-font); }
.mba-buy__express { min-height: 52px; }
.mba-buy__foot { display: grid; justify-items: center; gap: 10px; }
.mba-buy__pay { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.mba-buy__pay li { display: flex; line-height: 0; }
.mba-buy__pay svg { display: block; width: 38px; height: 24px; }
.mba-buy__secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0; color: var(--mba-muted); font: 600 12.5px/1.3 var(--mba-font); text-align: center; }
.mba-buy__secure .mba-icon { width: 15px; height: 15px; }

/* Sticky purchase bar (mobile, above the tab bar) */
.mba-sticky {
  position: fixed; left: 0; right: 0; bottom: calc(var(--mba-tabbar-h) + env(safe-area-inset-bottom, 0px)); z-index: 65;
  display: flex; align-items: center; gap: 12px; padding: 10px var(--mba-gutter);
  background: rgba(255, 255, 255, .96); -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 -1px 0 var(--mba-line), 0 -12px 24px rgba(40, 10, 60, .06); animation: mba-sticky-in .28s var(--mba-spring);
}
.mba-sticky__info { display: grid; flex: 1; gap: 3px; min-width: 0; }
.mba-sticky__summary { overflow: hidden; color: var(--mba-muted); font: 700 12.5px/1.2 var(--mba-font); text-overflow: ellipsis; white-space: nowrap; }
.mba-sticky__price { font: 800 18px/1 var(--mba-font); white-space: nowrap; }
.mba-sticky .mba-btn { flex: none; min-height: 48px; padding: 0 18px; }
body:not(:has([data-mba-tabbar])) .mba-sticky { bottom: 0; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
@keyframes mba-sticky-in { from { opacity: 0; transform: translateY(100%); } }

@media (min-width: 1024px) {
  .mba-product { padding-block: 24px 48px; }
  .mba-product__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); grid-template-rows: auto 1fr; grid-template-areas: "media head" "media main"; column-gap: 48px; row-gap: 8px; align-items: start; }
  .mba-product__media { position: sticky; top: calc(var(--mba-appbar-h) + 16px); }
  .mba-product__title { font-size: 40px; }
  .mba-sticky { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .mba-product *, .mba-product *::before, .mba-product *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

/* Cross-sell rail */
.mba-xsell { padding: 28px 0 8px; }
.mba-xsell__heading { margin: 0; color: var(--mba-ink); font: 800 clamp(22px, 5vw, 32px)/1.05 var(--mba-font); letter-spacing: -.04em; }
.mba-xsell__lead { margin: 8px 0 0; color: var(--mba-muted); font: 500 14.5px/1.5 var(--mba-font); }
.mba-xsell__rail { display: grid; grid-auto-flow: column; grid-auto-columns: 44%; gap: 10px; margin: 16px 0 0; padding: 0 0 6px; overflow-x: auto; list-style: none; scroll-snap-type: x mandatory; scrollbar-width: none; }
.mba-xsell__rail::-webkit-scrollbar { display: none; }
.mba-xsell__item { scroll-snap-align: start; }
.mba-xsell__card { display: grid; height: 100%; overflow: hidden; border: 1px solid var(--mba-line); border-radius: var(--mba-r-card); background: #fff; color: inherit; text-decoration: none; }
.mba-xsell__card:focus-visible { outline: 3px solid var(--mba-focus); outline-offset: 2px; }
.mba-xsell__media { display: grid; place-items: center; aspect-ratio: 1; overflow: hidden; background: var(--mba-surface); }
.mba-xsell__media img { width: 100%; height: 100%; object-fit: cover; }
.mba-xsell__media .mba-brand { width: 46px; height: 46px; }
.mba-xsell__body { display: grid; gap: 4px; padding: 12px; }
.mba-xsell__title { font: 700 14.5px/1.25 var(--mba-font); letter-spacing: -.01em; }
.mba-xsell__price { color: var(--mba-muted); font: 700 13.5px/1 var(--mba-font); }
@media (min-width: 750px) {
  .mba-xsell__rail { grid-auto-columns: minmax(0, 1fr); grid-auto-flow: row; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; }
}

/* Trustpilot rating, right under the title and above the perks. The stars are the real proportion:
   each tile is a grey star with a green one clipped to --mba-tp-fill on top, so 4,4/5 shows four
   green stars and a fifth 40 % green, never a rounded-up five. */
.mba-tp { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 8px; color: var(--mba-ink); text-decoration: none; }
.mba-tp__stars { display: inline-flex; gap: 2px; }
.mba-tp__star { position: relative; display: block; width: 17px; height: 17px; border-radius: 3px; background: #DCDCE6; }
.mba-tp__star-fill { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; border-radius: 3px; background: #00B67A; color: #fff; clip-path: inset(0 calc(100% - var(--mba-tp-fill, 0%)) 0 0); }
.mba-tp__star .mba-icon { width: 11px; height: 11px; fill: currentColor; stroke: none; }
.mba-tp__score { font: 700 13px/1 var(--mba-font); letter-spacing: -.01em; }
.mba-tp__score b { font-weight: 800; }
.mba-tp__brand { display: inline-flex; align-items: center; gap: 3px; color: var(--mba-muted); font: 700 12.5px/1 var(--mba-font); }
.mba-tp__logo { width: 13px; height: 13px; color: #00B67A; }
.mba-tp:hover .mba-tp__score, .mba-tp:hover .mba-tp__brand { text-decoration: underline; text-underline-offset: 2px; }

/* Perks strip, between the carousel and the first step */
.mba-pperks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin: 0; padding: 10px 6px; border: 1px solid var(--mba-line); border-radius: var(--mba-r-card); background: #fff; list-style: none; }
.mba-pperk { display: grid; justify-items: center; gap: 6px; padding: 2px 4px; text-align: center; }
.mba-pperk__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: #F1EEF5; color: var(--mba-ink); }
.mba-pperk__icon .mba-icon { width: 19px; height: 19px; }
.mba-pperk__label { color: var(--mba-ink); font: 700 12.5px/1.25 var(--mba-font); letter-spacing: -.01em; text-wrap: balance; }
@media (min-width: 400px) { .mba-pperk__label { font-size: 13.5px; } }

/* Inside the left column the perks are an ordinary row again: the named area only exists in the
   single-column layout, and it comes later in the file than the desktop block above. */

}

/* One rhythm between the sections of the page. The reused home sections each brought their own
   padding, so the gaps came out uneven — one tight, the next twice as wide. */
.mba-product-section ~ * .mba-home,
.mba-product-section ~ * .mba-pugc,
.mba-product-section ~ * .mba-why,
.mba-product-section ~ * .mba-xsell { padding-block: 26px; }
@media (min-width: 1024px) {
  .mba-product-section ~ * .mba-home,
  .mba-product-section ~ * .mba-pugc,
  .mba-product-section ~ * .mba-why,
  .mba-product-section ~ * .mba-xsell { padding-block: 44px; }
}

/* Reviews beside the buy box, desktop only (see mb-product-main). */
.mba-prev { display: none; }
@media (min-width: 1024px) {
  .mba-product__left { display: grid; grid-area: media; align-content: start; gap: 16px; position: sticky; top: calc(var(--mba-appbar-h) + 16px); }
  .mba-product__media { grid-area: auto; position: static; }
  .mba-prev { display: grid; gap: 12px; padding: 16px 18px; border: 1px solid var(--mba-line); border-radius: var(--mba-r-card); background: #fff; }
  .mba-prev__head { display: flex; align-items: center; gap: 10px; margin: 0; }
  .mba-prev__stars { display: flex; gap: 2px; }
  .mba-prev__star { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 3px; background: #00B67A; color: #fff; }
  .mba-prev__star .mba-icon { width: 11px; height: 11px; fill: currentColor; stroke: none; }
  .mba-prev__source { color: var(--mba-muted); font: 600 12.5px/1.3 var(--mba-font); text-decoration: underline; text-underline-offset: 2px; }
  .mba-prev__source:hover { color: var(--mba-ink); }
  .mba-prev__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
  .mba-prev__item + .mba-prev__item { padding-top: 12px; border-top: 1px solid var(--mba-line); }
  .mba-prev__title { margin: 0; font: 800 14px/1.3 var(--mba-font); letter-spacing: -.01em; }
  .mba-prev__text { margin: 4px 0 0; color: var(--mba-muted); font: 500 13.5px/1.45 var(--mba-font); }
  .mba-prev__by { margin: 6px 0 0; color: var(--mba-muted); font: 600 12px/1.2 var(--mba-font); }
}

/* Account suggestions — the typeahead under the account field. It sits in the flow rather than
   floating over the packs: on a phone an overlay covers the very choice the customer is about to
   make, and a dropdown that overlaps the sticky buy bar is unusable. */
.mba-suggest {
  margin-top: 8px;
}

.mba-suggest__list {
  margin: 0;
  padding: 4px;
  list-style: none;
  max-height: 264px;
  overflow-y: auto;
  border: 1px solid var(--mba-line, rgb(0 0 0 / 8%));
  border-radius: 14px;
  background: var(--mba-surface, #fff);
  box-shadow: 0 6px 20px rgb(0 0 0 / 6%);
}

.mba-suggest__item + .mba-suggest__item {
  margin-top: 2px;
}

.mba-suggest__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mba-suggest__item.is-active .mba-suggest__btn,
.mba-suggest__btn:hover,
.mba-suggest__btn:focus-visible {
  background: var(--mba-surface-2, rgb(0 0 0 / 4%));
}

.mba-suggest__avatar {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mba-surface-2, rgb(0 0 0 / 6%));
}

.mba-suggest__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mba-suggest__handle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.25;
}

.mba-suggest__handle > span:first-child,
.mba-suggest__meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mba-suggest__check {
  display: inline-flex;
  flex: none;
  color: var(--mba-accent, #3dbaff);
}

.mba-suggest__check svg {
  width: 14px;
  height: 14px;
}

.mba-suggest__meta {
  font-size: 0.82rem;
  color: var(--mba-muted, rgb(0 0 0 / 55%));
}

@media (prefers-reduced-motion: no-preference) {
  .mba-suggest__btn {
    transition: background-color 120ms ease;
  }
}

/* The selection count sits on the same line as the hint above the grid: it has to be readable at a
   glance while the customer is ticking tiles, without pushing the grid further down the page. */
.mba-posts__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.mba-posts__count {
  flex: none;
  font-weight: 600;
  color: var(--mba-text, inherit);
}

.mba-posts__count:empty {
  display: none;
}
