:root {
    --mbm-ink: #1a1a1a;
    --mbm-green: #005b24;
    --mbm-deep: #004b18;
    --mbm-line: #e5e8e3;
    --mbm-paper: #fdfcf9;
    --mbm-muted: #8a968e;
    --mbm-shell: min(1320px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mbm-site {
    margin: 0;
    color: var(--mbm-ink);
    background: var(--mbm-paper);
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.mbm-site a { color: inherit; text-decoration: none; }
.mbm-site img { display: block; max-width: 100%; }
.mbm-site button,
.mbm-site input { font: inherit; }
.page-shell { width: var(--mbm-shell); margin-inline: auto; }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.mbm-site em {
    color: var(--mbm-deep);
    font-family: Georgia, serif;
    font-weight: 400;
}

/* Header */
#header-container { min-height: 100px; position: relative; z-index: 50; }
.mbm-home #header-container {
    min-height: 0;
    position: absolute;
    inset: 0 0 auto;
}
.mbm-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.mbm-brand {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 0 0 auto;
    color: inherit;
    text-decoration: none;
}
.mbm-brand__mark {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #4ed37c, #68cdc4);
}
.mbm-brand__mark img { width: 42px; height: 42px; }
.mbm-brand__copy strong {
    display: block;
    font-family: "Inter Tight", Inter, sans-serif;
    font-size: 24px;
    letter-spacing: -1px;
}
.mbm-brand__copy small {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 14px;
}
.mbm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(0, 75, 24, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(15px);
}
.mbm-nav a {
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
    transition: .2s ease;
    color: inherit;
    text-decoration: none;
}
.mbm-nav a:hover,
.mbm-catalog-page .mbm-nav a:first-child {
    color: #fff;
    background: var(--mbm-deep);
}
.mbm-header__actions { display: flex; gap: 12px; flex: 0 0 auto; }
.mbm-icon-btn,
.mbm-header__search > button {
    width: 61px;
    height: 61px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid rgba(0, 75, 24, .12);
    background: transparent;
    cursor: pointer;
}
.mbm-icon-btn img,
.mbm-header__search > button img { width: 24px; height: 24px; }
.mbm-header__search > label,
.mbm-header__search > input { display: none; }
.mbm-cart-badge {
    position: absolute;
    right: -2px;
    top: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 20px;
    background: #ef5500;
    color: #fff;
    font-size: 11px;
    line-height: 20px;
}
.mbm-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 8px;
}
.mbm-menu-btn span { display: block; height: 2px; background: currentColor; margin: 5px 0; }
.mbm-home .mbm-header { color: #fff; }
.mbm-home .mbm-brand__copy small { color: rgba(255, 255, 255, .58); }
.mbm-home .mbm-nav { border-color: rgba(255, 255, 255, .25); }
.mbm-home .mbm-nav a:hover { background: rgba(255, 255, 255, .15); }
.mbm-home .mbm-icon-btn,
.mbm-home .mbm-header__search > button {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
}
.mbm-home .mbm-icon-btn img,
.mbm-home .mbm-header__search > button img { filter: brightness(0) invert(1); }

/* Hero */
.mbm-hero { height: 1102px; position: relative; color: #fff; }
.mbm-hero__image { position: absolute; width: 100%; height: 1024px; object-fit: cover; }
.mbm-hero__shade {
    position: absolute;
    inset: 0 0 78px;
    background:
        linear-gradient(55deg, rgba(0, 0, 0, .86) 10%, transparent 76%),
        linear-gradient(180deg, rgba(0, 0, 0, .5), transparent 42%);
}
.mbm-hero__content { position: relative; z-index: 2; padding-top: 402px; }
.mbm-countries { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; }
.mbm-countries i { width: 1px; height: 24px; background: rgba(255, 255, 255, .28); }
.mbm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    font-size: 14px;
}
.mbm-eyebrow b {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6fcf97;
    box-shadow: 0 0 0 4px rgba(111, 207, 151, .2);
}
.mbm-hero h1 {
    max-width: 820px;
    margin: 32px 0 20px;
    color: #fff;
    font: 400 clamp(46px, 4vw, 64px)/1.08 "Inter Tight", sans-serif;
    letter-spacing: -2px;
}
.mbm-hero h1 em { color: #fff; }
.mbm-hero__content > p { max-width: 760px; margin: 0; color: rgba(255, 255, 255, .75); line-height: 1.5; }
.mbm-hero__buttons { display: flex; gap: 16px; margin-top: 32px; }
.mbm-button {
    min-height: 49px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.mbm-button--light { color: var(--mbm-ink); background: #fff; }
.mbm-button--ghost { color: #fff; border: 1px solid #fff; }
.mbm-button--green { color: #fff !important; background: var(--mbm-deep); }
.mbm-stats {
    height: 157px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 64px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    color: var(--mbm-ink);
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, .1);
}
.mbm-stats > div {
    padding-right: 55px;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mbm-stats > div:last-child { padding-right: 0; border-right: 0; }
.mbm-stats strong { font: 400 43px/1 "Inter Tight", sans-serif; letter-spacing: -1.5px; }
.mbm-stats strong span { color: var(--mbm-deep); }
.mbm-stats small { margin-top: 10px; opacity: .65; }
.mbm-partners {
    height: 180px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    background: #fbf8f5;
}
.mbm-partners::before,
.mbm-partners::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: min(20vw, 300px);
    pointer-events: none;
}
.mbm-partners::before { left: 0; background: linear-gradient(90deg, #fbf8f5 0%, rgba(251,248,245,0) 100%); }
.mbm-partners::after { right: 0; background: linear-gradient(270deg, #fbf8f5 0%, rgba(251,248,245,0) 100%); }
.mbm-partners__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: mbm-partners-loop 70s linear infinite;
}
.mbm-partners:hover .mbm-partners__track,
.mbm-partners:focus-within .mbm-partners__track { animation-play-state: paused; }
.mbm-partners__set {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}
.mbm-partners__item {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: grid;
    place-items: center;
}
.mbm-partners__item img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}
@keyframes mbm-partners-loop {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(-50%,0,0); }
}
@media (prefers-reduced-motion: reduce) {
    .mbm-partners { overflow-x: auto; }
    .mbm-partners__track { animation: none; }
    .mbm-partners__set[aria-hidden="true"] { display: none; }
}

/* Common home sections */
.mbm-section { padding-block: 72px; }
.mbm-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.mbm-kicker {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .8px;
}
.mbm-kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.mbm-site h2 { margin: 0; font: 400 clamp(36px, 3.2vw, 48px)/1.1 "Inter Tight", sans-serif; letter-spacing: -1.7px; }
.mbm-outline-link {
    height: 50px;
    padding: 0 30px;
    border: 1px solid #b9d0bf;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--mbm-deep) !important;
    font-size: 14px;
    flex: 0 0 auto;
}
.mbm-health-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.mbm-health-grid a {
    height: 184px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf0eb;
    border-radius: 16px;
    background: linear-gradient(135deg, #f6fbff, #fffefa);
}
.mbm-health-grid img { width: 100%; height: 100%; object-fit: cover; transition: .25s ease; }
.mbm-health-grid span { position: absolute; left: 10px; right: 10px; bottom: 17px; text-align: center; line-height: 1.1; }
.mbm-health-grid a:hover img { transform: scale(1.03); }
.mbm-assistant {
    height: 544px;
    margin-block: 55px 40px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: #cbded1;
}
.mbm-assistant > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.mbm-assistant__copy { position: relative; z-index: 2; width: 48%; height: 100%; padding: 62px 80px; }
.mbm-assistant__copy h2 { margin-bottom: 26px; }
.mbm-assistant__copy > p:not(.mbm-kicker) { max-width: 500px; line-height: 1.5; }
.mbm-assistant ul,
.mbm-why ul { padding: 0; list-style: none; }
.mbm-assistant li { margin: 13px 0; color: #5d685f; }
.mbm-assistant li::before,
.mbm-why li::before { content: "✓"; margin-right: 16px; color: var(--mbm-deep); font-weight: 700; }
.mbm-assistant .mbm-button { margin-top: 14px; }

/* Existing dynamic product cards restyled for MBM */
.mbm-product-grid.kt-grid {
    display: grid;
    gap: 24px;
    padding: 0;
}
.mbm-product-grid--home { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mbm-product-grid--home > .kt-card:nth-child(n + 5) { display: none; }
.mbm-product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mbm-product-grid .kt-card {
    display: flex;
    min-width: 0;
    min-height: 560px;
    padding: 0;
    overflow: hidden;
    flex-direction: column;
    color: var(--mbm-ink);
    background: #fff;
    border: 1px solid var(--mbm-line);
    border-radius: 16px;
    box-shadow: none;
}
.mbm-product-grid .kt-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(23, 54, 34, .08); }
.mbm-product-grid .kt-card__media {
    width: 100%;
    height: 312px;
    min-height: 312px;
    padding: 0;
    border-radius: 0;
    background: #f5f6f4;
}
.mbm-product-grid .kt-card__image { width: 100%; height: 100%; object-fit: cover; }
.mbm-product-grid .kt-card__badge,
.mbm-product-grid .kt-card__sale-badge {
    top: 12px;
    left: 12px;
    right: auto;
    padding: 8px 12px;
    color: #fff;
    background: #ef5500;
    border: 0;
    border-radius: 999px;
    font-size: 10px;
}
.mbm-product-grid .kt-card__meta {
    margin: 0;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.mbm-product-grid .kt-card__art {
    width: 100%;
    margin: 0 0 16px;
    color: #4b5a51;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.mbm-product-grid .kt-card__title {
    min-height: 46px;
    margin: 0;
    padding: 0 20px;
    order: 3;
    font: 600 16px/1.35 Inter, sans-serif;
}
.mbm-product-grid .kt-card__price {
    display: flex !important;
    align-items: baseline;
    gap: 4px;
    order: 4;
    margin: auto 0 18px;
    padding-left: 20px;
    font-weight: 700;
}
.mbm-product-grid .kt-card__price-val { font-size: 20px; }
.mbm-product-grid .kt-card__old-price { font-size: 12px; color: #929a94; }
.mbm-product-grid .kt-card__price-locked { margin: 0 20px 18px; }
.mbm-product-grid .kt-card__cta {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    margin: auto 20px 18px auto;
    padding: 0;
    order: 5;
    border: 0;
    border-radius: 50%;
    background: #126839;
}
.mbm-product-grid .kt-card__cta > span:not(.btn__icon) { display: none !important; }
.mbm-product-grid .kt-card__cta .btn__icon { width: 18px; height: 18px; }
.mbm-product-grid .kt-card__cta--out { width: auto; padding-inline: 15px; border-radius: 99px; }
.mbm-product-grid .kt-card__cta--out > span:first-child { display: inline !important; }
.mbm-product-grid .kt-card { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto auto 1fr auto; }
.mbm-product-grid .kt-card__media { grid-column: 1 / -1; }
.mbm-product-grid .kt-card__meta { grid-column: 1 / -1; }
.mbm-product-grid .kt-card__title { grid-column: 1 / -1; }
.mbm-product-grid .kt-card__price { grid-column: 1; grid-row: 5; }
.mbm-product-grid .kt-card__cta { grid-column: 2; grid-row: 5; }
.kt-loading { color: var(--mbm-muted); }

.mbm-why {
    padding-block: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.mbm-why > div > p:not(.mbm-kicker) { max-width: 610px; margin: 34px 0; line-height: 1.5; }
.mbm-why > img { width: 100%; height: 370px; object-fit: cover; }
.mbm-why ul { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; color: #6d756f; font-size: 14px; }
.mbm-labs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mbm-labs article > img { width: 100%; height: 310px; object-fit: cover; border-radius: 16px; }
.mbm-labs h3 { margin: 22px 0 12px; font-size: 22px; font-weight: 400; }
.mbm-labs p { padding-top: 16px; border-top: 1px solid var(--mbm-line); color: #747b76; font-size: 13px; line-height: 1.8; }
.mbm-contacts {
    margin-block: 50px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
}
.mbm-contacts > div {
    min-width: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid #e8e8e8;
    backdrop-filter: blur(15px);
}
.mbm-contacts > div:last-child { border: 0; }
.mbm-contacts img { width: 32px; height: 32px; flex: 0 0 32px; }
.mbm-contacts > div > span { min-width: 0; }
.mbm-contacts small,
.mbm-contacts strong { display: block; }
.mbm-contacts small { margin-bottom: 4px; color: rgba(0,0,0,.3); font-size: 10px; line-height: 1.375; letter-spacing: .275px; text-transform: uppercase; }
.mbm-contacts strong { color: #1a2b22; font-size: 14px; line-height: 28px; white-space: nowrap; }
.mbm-contacts strong a { color: inherit; text-decoration: none; }
.mbm-contacts strong a:hover { color: var(--mbm-deep); }

/* Catalog */
.mbm-catalog { padding-top: 38px; padding-bottom: 80px; }
.mbm-breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: var(--mbm-muted); font-size: 14px; }
.mbm-breadcrumbs b { color: var(--mbm-deep); }
.mbm-catalog > h1 {
    margin: 0;
    font: 400 clamp(42px, 4vw, 54px)/1.1 "Inter Tight", sans-serif;
    letter-spacing: -2px;
}
.mbm-catalog__lead { margin: 18px 0 28px; color: #919590; font-size: 18px; }
.mbm-catalog-search { display: flex; align-items: center; gap: 14px; position: relative; }
.mbm-catalog-search > span:first-child { position: absolute; left: 18px; color: var(--mbm-muted); font-size: 23px; transform: rotate(-25deg); }
.mbm-catalog-search input {
    width: 100%;
    height: 53px;
    padding: 0 55px;
    border: 1px solid var(--mbm-line);
    border-radius: 16px;
    outline: none;
    background: #fff;
}
.mbm-catalog-search input:focus { border-color: #83ac90; box-shadow: 0 0 0 3px rgba(0, 91, 36, .08); }
.mbm-catalog-search button {
    width: 54px;
    height: 53px;
    flex: 0 0 auto;
    border: 1px solid var(--mbm-line);
    border-radius: 16px;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
}
.mbm-catalog-search .btn__badge { position: absolute; right: -4px; top: -6px; }
.mbm-popular { margin: 24px 0 48px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: #91a096; font-size: 14px; }
.mbm-popular > span { margin-right: 14px; }
.mbm-popular a { height: 34px; padding: 0 18px; display: flex; align-items: center; border: 1px solid var(--mbm-line); border-radius: 99px; color: #4b5a51; background: #fff; }
.mbm-catalog-layout { display: grid; grid-template-columns: 312px minmax(0, 1fr); gap: 24px; align-items: start; }
.mbm-sidebar {
    padding: 20px;
    border: 1px solid var(--mbm-line);
    border-radius: 20px;
    background: #fff;
}
.mbm-sidebar section { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--mbm-line); }
.mbm-sidebar h2 { margin: 5px 0 14px; font: 700 15px/1.3 Inter, sans-serif; letter-spacing: 0; }
.mbm-sidebar section:first-child a {
    min-height: 36px;
    padding: 7px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    color: #4b5a51;
    font-size: 14px;
}
.mbm-sidebar section:first-child a::before { content: "♧"; margin-right: 10px; color: #168148; }
.mbm-sidebar section:first-child a:hover { background: #f5f8f5; }
.mbm-sidebar section:first-child a span { margin-left: auto; padding: 3px 8px; border-radius: 99px; background: #f6f7f5; color: #91a096; font-size: 12px; }
.mbm-sidebar label {
    min-height: 58px;
    padding: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--mbm-line);
    border-radius: 12px;
    font-size: 13px;
}
.mbm-sidebar label:first-of-type { border: 2px solid #168148; background: #f7fbf8; }
.mbm-sidebar label span strong,
.mbm-sidebar label span small { display: block; }
.mbm-sidebar label span small { margin: 3px 0 0 26px; color: #9ba39d; }
.mbm-sidebar > .mbm-button { width: 100%; }
.mbm-results__toolbar { min-height: 45px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; color: #5f6d63; font-size: 14px; }
.mbm-results__toolbar p { margin: 0; }
.mbm-results__toolbar > div { display: flex; }
.mbm-sort {
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--mbm-line);
    border-radius: 16px;
    background: #fff;
    color: #5f6d63;
    cursor: pointer;
}
.mbm-view {
    width: 40px;
    height: 40px;
    border: 1px solid var(--mbm-line);
    background: #fff;
    color: #7b8980;
}
.mbm-view.is-active { margin-left: 14px; color: #fff; background: var(--mbm-deep); border-color: var(--mbm-deep); border-radius: 12px 0 0 12px; }
.mbm-view:last-child { border-radius: 0 12px 12px 0; }
.mbm-reset { margin-bottom: 14px; border: 0; background: transparent; color: var(--mbm-green); font-size: 13px; cursor: pointer; }
.mbm-chips { margin-bottom: 14px; }

/* Footer */
.mbm-footer { padding-bottom: 20px; }
.mbm-footer__panel {
    min-height: 350px;
    padding: 60px 105px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 80px;
    color: rgba(255, 255, 255, .75);
    background: #00561e;
    border-radius: 20px;
}
.mbm-footer__panel h3 { margin: 8px 0 25px; color: rgba(255, 255, 255, .4); font-size: 10px; letter-spacing: 3px; }
.mbm-footer__panel a,
.mbm-footer__panel p { display: block; margin: 0 0 15px; color: inherit; font-size: 14px; }
.mbm-footer__panel a:hover { color: #fff; }
.mbm-footer__about > img { width: 62px; height: 62px; margin-bottom: 30px; }
.mbm-footer__about p { line-height: 1.5; }
.mbm-footer__socials { display: flex; gap: 10px; margin-top: 28px; }
.mbm-footer__socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    font: italic 15px Georgia, serif;
}
.mbm-footer__bottom { padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.mbm-footer__bottom > div { display: flex; gap: 45px; }
.mbm-footer__bottom a { color: inherit; }

/* Existing mobile drawer, recolored for the new brand */
.mobile-drawer__head .logo { font-family: "Inter Tight", sans-serif !important; color: var(--mbm-deep) !important; }
#btnBackToTop { background: var(--mbm-deep) !important; }

@media (max-width: 1180px) {
    :root { --mbm-shell: min(1050px, calc(100% - 32px)); }
    .mbm-nav a { padding-inline: 13px; }
    .mbm-brand { gap: 12px; }
    .mbm-brand__copy small { display: none; }
    .mbm-icon-btn,
    .mbm-header__search > button { width: 48px; height: 48px; }
    .mbm-stats { padding-inline: 35px; }
    .mbm-stats > div { padding-right: 25px; }
    .mbm-stats strong { font-size: 34px; }
    .mbm-health-grid { grid-template-columns: repeat(3, 1fr); }
    .mbm-assistant__copy { width: 58%; padding-inline: 50px; }
    .mbm-product-grid--home { grid-template-columns: repeat(2, 1fr); }
    .mbm-product-grid--catalog { grid-template-columns: repeat(2, 1fr); }
    .mbm-footer__panel { padding: 50px; gap: 35px; }
}

@media (max-width: 1350px) and (min-width: 821px) {
    .mbm-brand { gap: 12px; }
    .mbm-brand__copy small { display: none; }
    .mbm-nav a { padding-inline: 14px; }
    .mbm-icon-btn,
    .mbm-header__search > button { width: 48px; height: 48px; }
}

@media (max-width: 820px) {
    :root { --mbm-shell: calc(100% - 28px); }
    #header-container { min-height: 82px; }
    .mbm-header { height: 82px; }
    .mbm-brand__mark { width: 48px; height: 48px; }
    .mbm-brand__mark img { width: 33px; height: 33px; }
    .mbm-brand__copy strong { font-size: 20px; }
    .mbm-nav { display: none; }
    .mbm-header__actions { margin-left: auto; }
    .mbm-header__search,
    .mbm-header__actions .mbm-icon-btn:first-of-type { display: none; }
    .mbm-menu-btn { display: block; color: inherit; }
    .mbm-hero { height: 930px; }
    .mbm-hero__image,
    .mbm-hero__shade { height: 850px; }
    .mbm-hero__content { padding-top: 260px; }
    .mbm-hero h1 { font-size: 44px; }
    .mbm-stats {
        height: auto;
        bottom: 0;
        padding: 24px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        border-radius: 24px;
    }
    .mbm-stats > div { padding: 0; border: 0; }
    .mbm-stats strong { font-size: 28px; }
    .mbm-stats small { font-size: 11px; }
    .mbm-health-grid { grid-template-columns: repeat(2, 1fr); }
    .mbm-assistant { height: 620px; }
    .mbm-assistant::after { content: ""; position: absolute; inset: 0; background: rgba(220, 235, 225, .72); }
    .mbm-assistant > img { object-position: 65% center; }
    .mbm-assistant__copy { width: 78%; padding: 48px 36px; }
    .mbm-why { grid-template-columns: 1fr; gap: 35px; }
    .mbm-why > img { order: -1; }
    .mbm-labs { grid-template-columns: 1fr; }
    .mbm-contacts { grid-template-columns: 1fr 1fr; }
    .mbm-contacts > div:nth-child(2) { border-right: 0; }
    .mbm-contacts > div:nth-child(-n+2) { border-bottom: 1px solid #e8e8e8; }
    .mbm-footer__panel { grid-template-columns: 1fr 1fr; }
    .mbm-footer__bottom,
    .mbm-footer__bottom > div { flex-direction: column; align-items: flex-start; gap: 12px; }
    .mbm-catalog-layout { grid-template-columns: 1fr; }
    .mbm-sidebar { display: none; }
}

@media (max-width: 560px) {
    .mbm-header__actions { display: flex; gap: 8px; }
    .mbm-header__actions .header-cart-btn {
        width: 44px;
        height: 44px;
        display: grid;
    }
    .mbm-hero { height: auto; min-height: 900px; }
    .mbm-hero__image,
    .mbm-hero__shade { height: 100%; }
    .mbm-hero__image { object-position: 65% center; }
    .mbm-hero__content { padding-top: 210px; }
    .mbm-countries { gap: 9px; font-size: 12px; }
    .mbm-countries i { height: 16px; }
    .mbm-hero h1 { font-size: 38px; }
    .mbm-hero__buttons { flex-direction: column; }
    .mbm-button { width: 100%; }
    .mbm-stats { grid-template-columns: 1fr 1fr; }
    .mbm-partners { height: 120px; justify-content: flex-start; }
    .mbm-section { padding-block: 50px; }
    .mbm-heading { align-items: flex-start; }
    .mbm-heading .mbm-outline-link { display: none; }
    .mbm-site h2 { font-size: 34px; }
    .mbm-health-grid { gap: 12px; }
    .mbm-health-grid a { height: 160px; }
    .mbm-assistant { width: calc(100% - 28px); height: 680px; border-radius: 24px; }
    .mbm-assistant__copy { width: 100%; padding: 38px 24px; }
    .mbm-product-grid--home,
    .mbm-product-grid--catalog { grid-template-columns: 1fr; }
    .mbm-product-grid .kt-card__media { height: 340px; }
    .mbm-why { padding-block: 45px; }
    .mbm-why ul { grid-template-columns: 1fr; }
    .mbm-contacts { grid-template-columns: 1fr; }
    .mbm-contacts > div { border-right: 0; border-bottom: 1px solid #e8e8e8; }
    .mbm-footer__panel { grid-template-columns: 1fr; padding: 35px 28px; gap: 30px; }
    .mbm-catalog { padding-top: 22px; }
    .mbm-catalog > h1 { font-size: 40px; }
    .mbm-catalog__lead { font-size: 16px; line-height: 1.45; }
    .mbm-popular { margin-bottom: 32px; }
    .mbm-popular > span { flex-basis: 100%; }
    .mbm-results__toolbar .mbm-sort { display: none; }
}

/* Fluid responsive pass */
@media (max-width: 820px) {
    .mbm-site {
        min-width: 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    .page-shell { max-width: 100%; }
    .mbm-header {
        gap: 10px;
        padding-top: env(safe-area-inset-top, 0);
    }
    .mbm-brand { min-width: 0; }
    .mbm-brand__copy { min-width: 0; }
    .mbm-brand__copy strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .mbm-menu-btn {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        cursor: pointer;
    }
    .mbm-hero {
        height: auto;
        min-height: 100svh;
        padding: clamp(150px, 22vh, 220px) 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .mbm-hero__image,
    .mbm-hero__shade {
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .mbm-hero__content { padding-top: 0; }
    .mbm-hero h1 {
        max-width: 680px;
        font-size: clamp(38px, 8vw, 52px);
        overflow-wrap: anywhere;
    }
    .mbm-hero h1 br { display: none; }
    .mbm-hero__content > p {
        max-width: 620px;
        font-size: 15px;
    }
    .mbm-stats {
        width: var(--mbm-shell);
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 42px auto 0;
    }
    .mbm-heading > div { min-width: 0; }
    .mbm-assistant__copy { max-width: 620px; }
    .mbm-product-grid .kt-card { min-height: 500px; }
    .mbm-product-grid .kt-card__media {
        height: clamp(230px, 42vw, 310px);
        min-height: 0;
    }
    .mbm-results__toolbar { gap: 12px; }
    .mbm-footer__panel { padding: 42px 32px; }
}

@media (max-width: 560px) {
    :root { --mbm-shell: calc(100% - 24px); }
    #header-container { min-height: 72px; }
    .mbm-home #header-container { min-height: 0; }
    .mbm-header { height: 72px; }
    .mbm-brand { gap: 9px; }
    .mbm-brand__mark {
        width: 42px;
        height: 42px;
    }
    .mbm-brand__mark img {
        width: 29px;
        height: 29px;
    }
    .mbm-brand__copy strong {
        max-width: 132px;
        font-size: 17px;
        letter-spacing: -.5px;
    }
    .mbm-hero {
        min-height: 100svh;
        padding: clamp(118px, 18vh, 160px) 0 14px;
    }
    .mbm-hero__shade {
        background:
            linear-gradient(25deg, rgba(0, 0, 0, .9) 6%, rgba(0, 0, 0, .2) 84%),
            linear-gradient(180deg, rgba(0, 0, 0, .52), transparent 35%);
    }
    .mbm-countries {
        margin-bottom: 20px;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .mbm-eyebrow {
        max-width: 100%;
        padding: 10px 15px;
        font-size: 12px;
        line-height: 1.35;
    }
    .mbm-hero h1 {
        margin: 24px 0 16px;
        font-size: clamp(34px, 10vw, 43px);
        line-height: 1.04;
        letter-spacing: -1.5px;
    }
    .mbm-hero__content > p {
        font-size: 14px;
        line-height: 1.55;
    }
    .mbm-hero__buttons {
        gap: 10px;
        margin-top: 24px;
    }
    .mbm-stats {
        margin-top: 30px;
        padding: 20px;
        gap: 18px 12px;
    }
    .mbm-stats > div:last-child { grid-column: 1 / -1; }
    .mbm-stats strong { font-size: 25px; }
    .mbm-partners__set {
        gap: 34px;
        padding-right: 34px;
    }
    .mbm-partners__item,
    .mbm-partners__item img {
        width: 72px;
        height: 72px;
    }
    .mbm-partners__item { flex-basis: 72px; }
    .mbm-heading {
        margin-bottom: 30px;
        gap: 18px;
    }
    .mbm-kicker {
        margin-bottom: 16px;
        line-height: 1.4;
    }
    .mbm-site h2 {
        font-size: clamp(30px, 9vw, 36px);
        overflow-wrap: anywhere;
    }
    .mbm-health-grid a {
        height: auto;
        min-height: 146px;
        aspect-ratio: 1 / 1;
    }
    .mbm-health-grid span {
        left: 6px;
        right: 6px;
        bottom: 12px;
        font-size: 13px;
    }
    .mbm-assistant {
        height: auto;
        min-height: 620px;
        margin-block: 30px;
    }
    .mbm-assistant__copy {
        height: auto;
        min-height: 620px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .mbm-assistant__copy h2 br { display: none; }
    .mbm-product-grid .kt-card { min-height: 0; }
    .mbm-product-grid .kt-card__media {
        height: auto;
        aspect-ratio: 1 / .88;
    }
    .mbm-product-grid .kt-card__title {
        min-height: 0;
        margin-bottom: 22px;
    }
    .mbm-why > img {
        height: auto;
        aspect-ratio: 1.15 / 1;
        border-radius: 20px;
    }
    .mbm-labs article > img {
        height: auto;
        aspect-ratio: 1.15 / 1;
    }
    .mbm-contacts {
        margin-block: 30px 52px;
    }
    .mbm-contacts strong {
        line-height: 1.4;
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .mbm-footer__panel {
        min-height: 0;
        padding: 32px 22px;
        border-radius: 16px;
    }
    .mbm-footer__bottom { padding-inline: 4px; }
    .mbm-catalog-search { align-items: stretch; }
    .mbm-catalog-search input {
        min-width: 0;
        padding-inline: 45px 12px;
    }
    .mbm-results__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .mbm-results__toolbar > div { align-self: flex-end; }
}

@media (max-width: 360px) {
    :root { --mbm-shell: calc(100% - 18px); }
    .mbm-brand__copy strong { max-width: 112px; font-size: 16px; }
    .mbm-header__actions .header-cart-btn,
    .mbm-menu-btn { width: 40px; height: 40px; }
    .mbm-health-grid { grid-template-columns: 1fr; }
    .mbm-health-grid a { aspect-ratio: 1.4 / 1; }
    .mbm-stats { grid-template-columns: 1fr; }
    .mbm-stats > div:last-child { grid-column: auto; }
}

/* Product card — Figma node 132:10566 */
.mbm-product-grid.kt-grid {
    align-items: stretch;
}
.mbm-product-grid .kt-card {
    min-width: 0;
    min-height: 593px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #1a2b22;
    background: #fff;
    border: 1px solid #e7eae6;
    border-radius: 16px;
    box-shadow: none;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mbm-product-grid .kt-card:hover {
    transform: translateY(-3px);
    border-color: #ced8d1;
    box-shadow: 0 16px 34px rgba(24, 70, 46, .09);
}
.mbm-product-grid .kt-card__media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, .04);
    background: #f5f6f4;
}
.mbm-product-grid .kt-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.mbm-product-grid .kt-card:hover .kt-card__image { transform: scale(1.025); }
.mbm-product-grid .kt-card__sale-badge,
.mbm-product-grid .kt-card__badge,
.mbm-product-grid .kt-card__out-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    right: auto;
    padding: 8px 12px;
    color: #fff;
    background: #e65100;
    border: 0;
    border-radius: 999px;
    font: 500 10px/1.1 "Inter Tight", Inter, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mbm-product-grid .kt-card--out-of-stock .kt-card__sale-badge,
.mbm-product-grid .kt-card__out-badge { background: #6e7771; }
.mbm-product-grid .kt-card__body {
    min-height: 280px;
    padding: 20px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 16px;
}
.mbm-product-grid .kt-card__brand {
    min-height: 17px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5a51;
    font: 700 11px/1.5 Inter, sans-serif;
    letter-spacing: .275px;
    text-transform: uppercase;
}
.mbm-product-grid .kt-card__brand span {
    min-width: 20px;
    font-size: 12px;
}
.mbm-product-grid .kt-card__title {
    min-height: 42px;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    overflow: hidden;
    color: #1a2b22;
    font: 600 15px/1.375 Inter, sans-serif;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    order: 0;
}
.mbm-product-grid .kt-card__rating {
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8a968e;
    font-size: 14px;
    line-height: 20px;
}
.mbm-product-grid .kt-card__rating strong {
    color: #1a2b22;
    font-weight: 600;
}
.mbm-product-grid .kt-card__stars {
    width: 78px;
    height: 14px;
    display: flex;
    gap: 2px;
    flex: 0 0 78px;
}
.mbm-product-grid .kt-card__stars img {
    width: 14px;
    height: 14px;
    display: block;
}
.mbm-product-grid .kt-card__tags {
    min-height: 56px;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}
.mbm-product-grid .kt-card__tag {
    max-width: 100%;
    padding: 4px 12px;
    overflow: hidden;
    color: #4b5a51;
    background: #f6f7f5;
    border: 1px solid transparent;
    border-radius: 999px;
    font: 500 12px/16px Inter, sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mbm-product-grid .kt-card__tag--outline {
    padding: 4px 13px;
    background: #fff;
    border-color: #e7eae6;
}
.mbm-product-grid .kt-card__bottom {
    min-height: 40px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.mbm-product-grid .kt-card__price {
    margin: 0;
    padding: 0;
    display: flex !important;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0;
    color: #1a2b22;
    font: 700 18px/28px Inter, sans-serif;
    order: 0;
}
.mbm-product-grid .kt-card__price-val { font-size: 18px; }
.mbm-product-grid .kt-card__price-cur { margin-left: 4px; font-size: 18px; }
.mbm-product-grid .kt-card__old-price {
    width: 100%;
    color: #8a968e;
    font-size: 11px;
    line-height: 14px;
}
.mbm-product-grid .kt-card__price-locked {
    margin: 0;
    font-size: 12px;
    order: 0;
}
.mbm-product-grid .kt-card__cta {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    color: #fff;
    background: #175937;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    order: 0;
}
.mbm-product-grid .kt-card__cta:hover {
    background: #0e462a;
    transform: scale(1.05);
}
.mbm-product-grid .kt-card__cta img {
    width: 18px;
    height: 18px;
    display: block;
}
.mbm-product-grid .kt-card__cta--out {
    width: 40px;
    padding: 0;
    color: #fff;
    background: #a4ada7;
}
body.is-guest .mbm-product-grid [data-price] {
    display: flex !important;
}
body.is-guest .mbm-product-grid [data-price-locked],
.mbm-product-grid .kt-card__price-locked {
    display: none !important;
}

@media (max-width: 560px) {
    .mbm-product-grid .kt-card { min-height: 0; }
    .mbm-product-grid .kt-card__body {
        min-height: 280px;
        padding: 18px;
    }
}
