:root {
    --mb-font: "Exo 2", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mb-ink: #0f2f36;
    --mb-ink-soft: #284d55;
    --mb-muted: #6b858a;
    --mb-paper: #f5fbfb;
    --mb-surface: #ffffff;
    --mb-line: #d9eef0;
    --mb-rose: #52c7d5;
    --mb-rose-dark: #148ca0;
    --mb-mint: #d9f5f3;
    --mb-sage: #5f9ca5;
    --mb-plum: #143f49;
    --mb-metal: #9eced2;
    --mb-sky: #eaf8fb;
    --mb-aqua-soft: #edfafa;
    --mb-shadow: 0 24px 60px rgba(20, 75, 84, 0.13);
    --mb-soft-shadow: 0 14px 34px rgba(20, 75, 84, 0.09);
    --mb-radius: 8px;
    --mb-radius-sm: 6px;
    --mb-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mb-site {
    margin: 0;
    color: var(--mb-ink);
    background: var(--mb-paper);
    font-family: var(--mb-font);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
}

body.mb-site a {
    color: inherit;
    text-decoration: none;
}

body.mb-site img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
    font-size: 16px;
}

button {
    cursor: pointer;
}

.screen-reader-text,
.mb-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mb-skip-link:focus {
    top: 12px;
    left: 12px;
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #fff;
    background: var(--mb-ink);
    border-radius: var(--mb-radius-sm);
}

.mb-container {
    width: min(100% - 32px, var(--mb-container));
    margin: 0 auto;
}

.mb-main {
    min-height: 65vh;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mb-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 251, 251, 0.92);
    border-bottom: 1px solid rgba(217, 238, 240, 0.9);
    backdrop-filter: blur(18px);
}

.mb-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    width: min(100% - 32px, var(--mb-container));
    min-height: 82px;
    margin: 0 auto;
}

.mb-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.mb-brand__mark {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--mb-plum);
    background: linear-gradient(145deg, #ffffff, var(--mb-mint));
    border: 1px solid rgba(82, 199, 213, 0.45);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(20, 75, 84, 0.16);
    font-size: 14px;
    font-weight: 500;
}

.mb-brand__mark::after {
    position: absolute;
    inset: -5px;
    content: "";
    border: 1px solid rgba(82, 199, 213, 0.24);
    border-radius: 50%;
}

.mb-brand__mark span {
    position: relative;
    z-index: 1;
}

.mb-brand__text {
    display: grid;
    line-height: 1.05;
}

.mb-brand__text strong {
    font-size: 22px;
    font-weight: 500;
}

.mb-brand__text small {
    color: var(--mb-muted);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.mb-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mb-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 13px;
    border-radius: var(--mb-radius-sm);
    color: var(--mb-ink-soft);
    font-size: 15px;
    font-weight: 600;
    transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.mb-nav__list a:hover {
    color: var(--mb-rose-dark);
    background: rgba(82, 199, 213, 0.12);
    transform: translateY(-1px);
}

.mb-header__actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
}

.mb-icon-button,
.mb-add-to-cart,
.mb-button {
    border: 0;
    border-radius: var(--mb-radius-sm);
    font-weight: 500;
    letter-spacing: 0;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.mb-icon-button {
    position: relative;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--mb-ink);
    background: #fff;
    border: 1px solid var(--mb-line);
}

.mb-icon-button:hover,
.mb-button:hover,
.mb-add-to-cart:hover {
    transform: translateY(-2px);
}

.mb-cart-count,
.mb-bottom-nav b {
    position: absolute;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 5px;
    color: #fff;
    background: var(--mb-rose-dark);
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
}

.mb-cart-count {
    top: -5px;
    right: -6px;
}

.mb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    white-space: nowrap;
}

.mb-button--dark {
    color: #fff;
    background: var(--mb-rose-dark);
    box-shadow: 0 12px 26px rgba(20, 140, 160, 0.22);
}

.mb-button--dark:visited,
.mb-add-to-cart:visited {
    color: #fff;
}

.mb-button--dark:hover {
    color: #fff;
    background: var(--mb-plum);
}

.mb-button--light {
    color: var(--mb-ink);
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.mb-button--light:visited {
    color: var(--mb-ink);
}

.mb-button--ghost-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.mb-button--ghost-light:visited,
.mb-button--ghost-light:hover {
    color: #fff;
}

.mb-button--soft {
    color: var(--mb-rose-dark);
    background: rgba(82, 199, 213, 0.13);
}

.mb-button--soft:visited {
    color: var(--mb-rose-dark);
}

.mb-button--soft:hover,
.mb-button--light:hover {
    color: var(--mb-plum);
}

.mb-button span,
.mb-add-to-cart span {
    color: inherit;
}

.mb-menu-toggle {
    display: none;
}

.mb-mobile-panel {
    display: none;
}

.mb-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--mb-ink);
}

.mb-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 47, 54, 0.98), rgba(20, 63, 73, 0.9) 50%, rgba(20, 140, 160, 0.42)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
}

.mb-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.68fr);
    grid-template-areas:
        "content portrait"
        "actions portrait";
    align-items: center;
    gap: 0 42px;
    min-height: 610px;
    padding: 78px 0 92px;
}

.mb-hero__content {
    grid-area: content;
    align-self: end;
    max-width: 720px;
}

.mb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--mb-rose);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.mb-hero .mb-kicker {
    color: var(--mb-mint);
}

.mb-hero h1,
.mb-page-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.mb-hero p,
.mb-page-hero p {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    font-weight: 600;
}

.mb-hero__actions {
    grid-area: actions;
    align-self: start;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.mb-hero__portrait {
    position: relative;
    grid-area: portrait;
    display: grid;
    justify-self: center;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    place-items: center;
    padding: 34px;
}

.mb-hero__portrait::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(217, 245, 243, 0.18) 58%, rgba(82, 199, 213, 0.1) 74%),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.08), var(--mb-shadow);
}

.mb-hero__portrait::after {
    position: absolute;
    right: 18px;
    bottom: 54px;
    width: 86px;
    height: 86px;
    content: "";
    background: #ffffff;
    border: 12px solid var(--mb-mint);
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px rgba(82, 199, 213, 0.12);
}

.mb-hero__portrait img {
    position: relative;
    z-index: 1;
    width: 82%;
    height: 82%;
    object-fit: contain;
    border: 10px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    filter: saturate(1.08) contrast(1.06);
    box-shadow: 0 18px 44px rgba(7, 38, 45, 0.24);
}

.mb-hero__signature {
    position: absolute;
    right: 2px;
    bottom: 10px;
    z-index: 2;
    display: grid;
    gap: 1px;
    max-width: 220px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(82, 199, 213, 0.24);
    border-radius: var(--mb-radius);
    color: var(--mb-ink);
    box-shadow: var(--mb-shadow);
}

.mb-hero__signature span {
    font-size: 20px;
    font-weight: 500;
}

.mb-hero__signature small {
    color: var(--mb-muted);
    font-size: 12px;
    font-weight: 600;
}

.mb-hero__dock {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: -46px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--mb-radius);
    overflow: hidden;
    box-shadow: var(--mb-shadow);
}

.mb-hero__dock a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 92px;
    padding: 18px;
    color: #fff;
    background: rgba(15, 47, 54, 0.72);
    font-weight: 500;
    transition: background 200ms ease, transform 200ms ease;
}

.mb-hero__dock a:hover {
    color: var(--mb-plum);
    background: var(--mb-mint);
    transform: translateY(-2px);
}

.mb-section {
    padding: 86px 0;
}

.mb-section--tight {
    padding: 56px 0;
}

.mb-section--soft {
    background: #fff;
}

.mb-section--dark {
    color: #fff;
    background: var(--mb-plum);
}

.mb-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.mb-section-head h2 {
    max-width: 760px;
    margin: 0;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 500;
}

.mb-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mb-rose-dark);
    font-weight: 500;
    white-space: nowrap;
}

.mb-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mb-feature-strip div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 12px;
    align-items: center;
    min-height: 86px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-soft-shadow);
}

.mb-feature-strip i {
    grid-row: span 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--mb-rose-dark);
    background: rgba(82, 199, 213, 0.1);
    border-radius: 50%;
}

.mb-feature-strip strong {
    font-size: 17px;
    font-weight: 500;
}

.mb-feature-strip span {
    color: var(--mb-muted);
    font-size: 14px;
    font-weight: 500;
}

.mb-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.mb-category-tile {
    display: grid;
    gap: 14px;
    min-height: 130px;
    padding: 18px;
    background: linear-gradient(180deg, #fff, var(--mb-aqua-soft));
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-soft-shadow);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mb-category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(82, 199, 213, 0.45);
    box-shadow: var(--mb-shadow);
}

.mb-category-tile i {
    color: var(--mb-rose);
    font-size: 22px;
}

.mb-category-tile span {
    align-self: end;
    font-weight: 500;
    line-height: 1.2;
}

.mb-product-grid,
.mb-service-grid,
.mb-post-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mb-product-grid--archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mb-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mb-product-card,
.mb-service-card,
.mb-post-card {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    overflow: hidden;
    box-shadow: var(--mb-soft-shadow);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mb-product-card:hover,
.mb-service-card:hover,
.mb-post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(82, 199, 213, 0.42);
    box-shadow: var(--mb-shadow);
}

.mb-product-card__media {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, #ffffff, var(--mb-sky)),
        #fff;
}

.mb-product-card__media img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: transform 500ms ease;
}

.mb-product-card:hover .mb-product-card__media img {
    transform: scale(1.04);
}

.mb-product-card__placeholder,
.mb-single__placeholder {
    display: grid;
    place-items: center;
    color: var(--mb-rose-dark);
    font-size: 56px;
}

.mb-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: #fff;
    background: var(--mb-rose);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.mb-product-card .mb-badge,
.mb-single__media .mb-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.mb-product-card__body,
.mb-service-card__body {
    display: grid;
    gap: 11px;
    padding: 16px;
}

.mb-product-card__brand {
    color: var(--mb-sage);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.mb-product-card h2,
.mb-service-card h2,
.mb-post-card h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.mb-product-card p,
.mb-service-card p,
.mb-post-card p {
    margin: 0;
    color: var(--mb-muted);
    font-size: 14px;
    font-weight: 600;
}

.mb-product-card__meta,
.mb-single__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mb-product-card__meta span,
.mb-single__facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 9px;
    color: var(--mb-ink-soft);
    background: #eaf8fb;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.mb-product-card__bottom,
.mb-service-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.mb-price {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.mb-price del {
    color: var(--mb-muted);
    font-size: 12px;
    font-weight: 500;
}

.mb-price strong {
    color: var(--mb-ink);
    font-size: 19px;
    line-height: 1.1;
    font-weight: 500;
    white-space: nowrap;
}

.mb-price span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mb-muted);
    font-size: 12px;
    font-weight: 600;
}

.mb-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 13px;
    color: #fff;
    background: var(--mb-rose-dark);
}

.mb-add-to-cart:hover {
    color: #fff;
    background: var(--mb-plum);
}

.mb-service-card__top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 124px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(217, 245, 243, 0.75), rgba(82, 199, 213, 0.12)),
        #fff;
}

.mb-service-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #fff;
    background: var(--mb-plum);
    border-radius: 50%;
    font-size: 21px;
}

.mb-service-card__result,
.mb-result-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    color: var(--mb-ink-soft);
    background: rgba(217, 245, 243, 0.48);
    border-radius: var(--mb-radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.mb-service-card__result i,
.mb-result-box i {
    color: var(--mb-sage);
    margin-top: 3px;
}

.mb-page-hero {
    padding: 82px 0 70px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15, 47, 54, 0.98), rgba(20, 63, 73, 0.9), rgba(20, 140, 160, 0.34)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
}

.mb-page-hero--catalog,
.mb-page-hero--services {
    padding-bottom: 86px;
}

.mb-page-hero .mb-kicker {
    color: var(--mb-mint);
}

.mb-catalog-tools {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.mb-search {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    min-height: 56px;
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-soft-shadow);
}

.mb-search i {
    color: var(--mb-rose-dark);
    text-align: center;
}

.mb-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--mb-ink);
    font-weight: 500;
}

.mb-filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.mb-filter-row button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    color: var(--mb-ink-soft);
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

.mb-filter-row button.is-active,
.mb-filter-row button:hover {
    color: #fff;
    background: var(--mb-rose-dark);
    border-color: var(--mb-rose-dark);
}

.mb-single {
    padding: 64px 0 90px;
}

.mb-single__grid,
.mb-checkout-layout,
.mb-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
    gap: 34px;
    align-items: start;
}

.mb-single__media {
    position: sticky;
    top: 132px;
    display: grid;
    min-height: 560px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, #ffffff, var(--mb-sky)),
        #fff;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-shadow);
}

.mb-single__media img {
    width: 100%;
    height: 100%;
    padding: 34px;
    object-fit: contain;
}

.mb-service-visual {
    position: sticky;
    top: 132px;
    display: grid;
    min-height: 520px;
    place-items: center;
    padding: 32px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--mb-plum), var(--mb-rose-dark), #72d2d7),
        var(--mb-plum);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-shadow);
    text-align: center;
}

.mb-service-visual span {
    display: grid;
    width: 116px;
    height: 116px;
    place-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    font-size: 44px;
}

.mb-service-visual strong {
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.mb-service-visual small {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 500;
}

.mb-single__content {
    display: grid;
    gap: 20px;
}

.mb-back-link {
    color: var(--mb-rose-dark);
    font-weight: 500;
}

.mb-single__content h1 {
    margin: 0;
    font-size: 50px;
    line-height: 1.03;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.mb-lead {
    margin: 0;
    color: var(--mb-ink-soft);
    font-size: 20px;
    font-weight: 500;
}

.mb-single__buy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-soft-shadow);
}

.mb-price--single strong {
    margin-right: 14px;
    font-size: 30px;
}

.mb-rich-text {
    color: var(--mb-ink-soft);
    font-size: 18px;
    font-weight: 600;
}

.mb-rich-text h2,
.mb-rich-text h3 {
    color: var(--mb-ink);
    font-weight: 500;
}

.mb-rich-text a {
    color: var(--mb-rose-dark);
    font-weight: 500;
}

.mb-note {
    padding: 14px 16px;
    background: rgba(158, 206, 210, 0.18);
    border-left: 4px solid var(--mb-metal);
    border-radius: var(--mb-radius-sm);
}

.mb-order-flow {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: 34px;
    align-items: center;
}

.mb-order-flow h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 500;
}

.mb-order-flow p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 600;
}

.mb-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mb-steps li {
    min-height: 180px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--mb-radius);
}

.mb-steps span {
    color: var(--mb-mint);
    font-size: 13px;
    font-weight: 500;
}

.mb-steps strong {
    display: block;
    margin-top: 18px;
    font-size: 22px;
    font-weight: 500;
}

.mb-cart-panel,
.mb-cart-summary,
.mb-checkout-form,
.mb-contact-card,
.mb-info-grid article,
.mb-post-card {
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-soft-shadow);
}

.mb-cart-panel,
.mb-cart-summary,
.mb-checkout-form {
    padding: 20px;
}

.mb-cart-summary {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 14px;
}

.mb-cart-summary h2 {
    margin: 0;
    font-size: 24px;
}

.mb-cart-summary > span {
    color: var(--mb-muted);
    font-weight: 500;
    text-transform: uppercase;
}

.mb-cart-summary > strong {
    font-size: 34px;
    line-height: 1;
}

.mb-cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--mb-line);
}

.mb-cart-item:last-child {
    border-bottom: 0;
}

.mb-cart-item h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
}

.mb-cart-item p {
    margin: 5px 0 0;
    color: var(--mb-muted);
    font-size: 13px;
    font-weight: 500;
}

.mb-cart-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 7px;
}

.mb-cart-controls button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--mb-ink);
    background: #eaf8fb;
    border: 0;
    border-radius: 50%;
}

.mb-checkout-form {
    display: grid;
    gap: 14px;
}

.mb-checkout-form label {
    display: grid;
    gap: 7px;
}

.mb-checkout-form span {
    color: var(--mb-ink-soft);
    font-weight: 500;
}

.mb-checkout-form input,
.mb-checkout-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--mb-ink);
    background: #f5fbfb;
    border: 1px solid var(--mb-line);
    border-radius: var(--mb-radius-sm);
    font-size: 16px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mb-checkout-form textarea {
    min-height: 130px;
    resize: vertical;
}

.mb-checkout-form input:focus,
.mb-checkout-form textarea:focus {
    border-color: var(--mb-rose);
    box-shadow: 0 0 0 4px rgba(82, 199, 213, 0.12);
}

.mb-form-message {
    min-height: 24px;
    margin: 0;
    color: var(--mb-rose-dark);
    font-weight: 600;
}

.mb-empty {
    color: var(--mb-muted);
    font-weight: 600;
}

.mb-contact-grid,
.mb-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.mb-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mb-contact-card,
.mb-info-grid article,
.mb-post-card {
    display: grid;
    gap: 10px;
    min-height: 180px;
    padding: 22px;
}

.mb-contact-card i,
.mb-info-grid article > span {
    color: var(--mb-rose-dark);
    font-size: 26px;
}

.mb-contact-card strong,
.mb-info-grid h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
}

.mb-contact-card span,
.mb-info-grid p {
    color: var(--mb-muted);
    font-weight: 500;
}

.mb-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 26px;
    align-items: center;
}

.mb-about-hero img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: var(--mb-mint);
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.mb-post-cover {
    margin: 0 0 24px;
}

.mb-post-cover img {
    width: 100%;
    border-radius: var(--mb-radius);
}

.navigation.pagination {
    margin-top: 34px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-numbers {
    display: grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    background: #fff;
    border: 1px solid var(--mb-line);
    border-radius: 50%;
    font-weight: 500;
}

.page-numbers.current {
    color: #fff;
    background: var(--mb-rose-dark);
    border-color: var(--mb-rose-dark);
}

.mb-footer {
    padding: 56px 0 110px;
    color: #fff;
    background: var(--mb-ink);
}

.mb-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 0.72fr));
    gap: 28px;
    width: min(100% - 32px, var(--mb-container));
    margin: 0 auto;
}

.mb-brand--footer .mb-brand__mark {
    color: var(--mb-ink);
    background: #fff;
}

.mb-brand--footer .mb-brand__text small,
.mb-footer p {
    color: rgba(255, 255, 255, 0.64);
}

.mb-footer h2 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 500;
}

.mb-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 600;
}

.mb-footer a:hover {
    color: #fff;
}

.mb-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(100% - 32px, var(--mb-container));
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 500;
}

.mb-bottom-nav {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.91);
    border: 1px solid var(--mb-line);
    border-radius: 22px;
    box-shadow: var(--mb-shadow);
    backdrop-filter: blur(18px);
}

.mb-bottom-nav a {
    position: relative;
    display: grid;
    gap: 3px;
    min-width: 0;
    min-height: 54px;
    place-items: center;
    color: var(--mb-muted);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
}

.mb-bottom-nav i {
    font-size: 18px;
}

.mb-bottom-nav a:hover {
    color: var(--mb-rose-dark);
    background: rgba(82, 199, 213, 0.08);
}

.mb-bottom-nav b {
    top: 2px;
    right: 20%;
}

.mb-toast {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 80;
    max-width: 320px;
    padding: 13px 16px;
    color: #fff;
    background: var(--mb-ink);
    border-radius: var(--mb-radius);
    box-shadow: var(--mb-shadow);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.mb-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Final typography and button contrast pass. */
body.mb-site {
    font-weight: 500;
}

.mb-brand__mark,
.mb-brand__text strong {
    font-weight: 600;
}

.mb-nav__list a,
.mb-button,
.mb-add-to-cart,
.mb-filter-row button,
.mb-bottom-nav a {
    font-weight: 600;
}

.mb-hero h1,
.mb-page-hero h1,
.mb-section-head h2,
.mb-order-flow h2,
.mb-single__content h1 {
    font-weight: 700;
}

.mb-product-card h2,
.mb-service-card h2,
.mb-post-card h2,
.mb-price strong,
.mb-contact-card strong,
.mb-info-grid h2 {
    font-weight: 600;
}

.mb-hero p,
.mb-page-hero p,
.mb-product-card p,
.mb-service-card p,
.mb-rich-text {
    font-weight: 500;
}

.mb-button,
.mb-button:visited,
.mb-button:hover,
.mb-button:focus,
.mb-add-to-cart,
.mb-add-to-cart:visited,
.mb-add-to-cart:hover,
.mb-add-to-cart:focus {
    color: #fff !important;
}

.mb-button *,
.mb-add-to-cart * {
    color: inherit !important;
}

.mb-button--light,
.mb-button--light:visited,
.mb-button--light:hover,
.mb-button--light:focus,
.mb-button--soft,
.mb-button--soft:visited,
.mb-button--soft:hover,
.mb-button--soft:focus {
    color: var(--mb-plum) !important;
}

.mb-button--ghost-light,
.mb-button--ghost-light:visited,
.mb-button--ghost-light:hover,
.mb-button--ghost-light:focus {
    color: #fff !important;
}

@media (max-width: 1100px) {
    body.mb-site.mb-menu-open {
        overflow: hidden;
    }

    .mb-nav {
        display: none;
    }

    .mb-header__inner {
        position: relative;
        z-index: 72;
        grid-template-columns: auto 1fr;
    }

    .mb-header__actions {
        position: relative;
        z-index: 73;
        justify-self: end;
    }

    .mb-menu-toggle {
        display: inline-grid;
    }

    .mb-menu-toggle[aria-expanded="true"] {
        color: #fff;
        background: var(--mb-rose-dark);
        border-color: transparent;
    }

    .mb-menu-toggle[aria-expanded="true"] i::before {
        content: "\f00d";
    }

    .mb-mobile-panel {
        position: fixed;
        inset: 0;
        z-index: 68;
        display: grid;
        align-content: center;
        gap: 12px;
        width: 100%;
        min-height: 100vh;
        margin: 0;
        padding: 104px 18px 120px;
        background:
            radial-gradient(circle at 18% 18%, rgba(82, 199, 213, 0.2), transparent 30%),
            linear-gradient(180deg, rgba(245, 251, 251, 0.98), rgba(217, 245, 243, 0.96));
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: blur(18px);
        animation: mbMenuReveal 260ms ease both;
    }

    .mb-mobile-panel[hidden] {
        display: none;
    }

    .mb-mobile-panel a {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        width: min(100%, 460px);
        min-height: 64px;
        margin-left: auto;
        padding: 0 18px;
        color: var(--mb-plum);
        background: rgba(255, 255, 255, 0.68);
        border: 1px solid rgba(82, 199, 213, 0.18);
        border-radius: var(--mb-radius);
        box-shadow: 0 12px 26px rgba(20, 75, 84, 0.08);
        font-size: 22px;
        font-weight: 700;
        text-align: right;
    }

    .mb-mobile-panel a:hover {
        color: #fff;
        background: var(--mb-rose-dark);
    }

    .mb-mobile-panel i {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        color: var(--mb-rose-dark);
        background: rgba(82, 199, 213, 0.12);
        border-radius: 50%;
        font-size: 17px;
    }

    .mb-mobile-panel a:hover i {
        color: #fff;
        background: rgba(255, 255, 255, 0.16);
    }

    .mb-product-grid,
    .mb-product-grid--archive {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mb-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@keyframes mbMenuReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    body.mb-site {
        padding-bottom: 82px;
    }

    .mb-header__inner {
        min-height: 68px;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    .mb-header__actions .mb-button {
        display: none;
    }

    .mb-brand__text strong {
        font-size: 19px;
    }

    .mb-hero__inner {
        grid-template-areas:
            "content"
            "portrait"
            "actions";
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding: 54px 0 82px;
    }

    .mb-hero__content {
        justify-self: center;
        text-align: center;
    }

    .mb-hero .mb-kicker {
        justify-content: center;
    }

    .mb-hero p {
        margin-right: auto;
        margin-left: auto;
    }

    .mb-hero__actions {
        justify-self: center;
        width: min(100%, 420px);
        margin-top: 2px;
    }

    .mb-hero__actions .mb-button--ghost-light {
        order: 1;
    }

    .mb-hero__actions .mb-button--light {
        order: 2;
    }

    .mb-hero h1,
    .mb-page-hero h1 {
        font-size: 44px;
    }

    .mb-hero p,
    .mb-page-hero p {
        font-size: 18px;
    }

    .mb-hero__portrait {
        width: min(100%, 300px);
    }

    .mb-hero__dock {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -40px;
    }

    .mb-hero__dock a {
        min-height: 74px;
    }

    .mb-section {
        padding: 60px 0;
    }

    .mb-section--tight {
        padding: 42px 0;
    }

    .mb-section-head {
        display: grid;
        align-items: start;
    }

    .mb-section-head h2,
    .mb-order-flow h2 {
        font-size: 32px;
    }

    .mb-feature-strip,
    .mb-service-grid,
    .mb-service-grid--archive,
    .mb-order-flow,
    .mb-steps,
    .mb-single__grid,
    .mb-checkout-layout,
    .mb-cart-layout,
    .mb-contact-grid,
    .mb-info-grid,
    .mb-footer__inner {
        grid-template-columns: 1fr;
    }

    .mb-product-grid,
    .mb-product-grid--archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mb-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mb-single__media,
    .mb-service-visual,
    .mb-cart-summary {
        position: static;
    }

    .mb-single__media,
    .mb-service-visual {
        min-height: 380px;
    }

    .mb-single__content h1 {
        font-size: 38px;
    }

    .mb-bottom-nav {
        display: grid;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        gap: 2px;
        padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 -14px 34px rgba(20, 75, 84, 0.13);
    }

    .mb-bottom-nav a {
        min-height: 56px;
        padding: 4px 2px;
        border-radius: 14px;
        font-size: 10px;
        line-height: 1.1;
    }

    .mb-bottom-nav span {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mb-bottom-nav i {
        font-size: 17px;
    }

    .mb-bottom-nav b {
        top: 3px;
        right: calc(50% - 20px);
    }

    .mb-footer {
        padding-bottom: 120px;
    }

    .mb-footer__bottom {
        display: grid;
    }

    .mb-toast {
        right: 12px;
        bottom: 96px;
        left: 12px;
        max-width: none;
    }
}

@media (max-width: 520px) {
    .mb-container,
    .mb-header__inner,
    .mb-mobile-panel,
    .mb-footer__inner,
    .mb-footer__bottom {
        width: min(100% - 24px, var(--mb-container));
    }

    .mb-brand__mark {
        width: 42px;
        height: 42px;
    }

    .mb-brand__text small {
        display: none;
    }

    .mb-mobile-panel {
        width: 100%;
        padding-right: 12px;
        padding-left: 12px;
    }

    .mb-hero h1,
    .mb-page-hero h1 {
        font-size: 36px;
    }

    .mb-page-hero {
        padding: 62px 0 52px;
    }

    .mb-hero__actions,
    .mb-single__buy {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mb-hero__dock {
        grid-template-columns: 1fr;
    }

    .mb-hero__dock a {
        min-height: 60px;
    }

    .mb-product-grid,
    .mb-product-grid--archive {
        grid-template-columns: 1fr;
    }

    .mb-product-card__bottom,
    .mb-service-card__bottom,
    .mb-cart-item {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .mb-add-to-cart,
    .mb-button {
        width: 100%;
    }

    .mb-cart-controls {
        justify-content: start;
    }

    .mb-single__content h1 {
        font-size: 32px;
    }

    .mb-service-visual strong {
        font-size: 34px;
    }
}

/* Requested heavier typography pass. */
body.mb-site,
body.mb-site a,
body.mb-site button,
body.mb-site input,
body.mb-site textarea,
body.mb-site select,
body.mb-site p,
body.mb-site li,
body.mb-site span,
body.mb-site small {
    font-weight: 600;
}

.mb-hero h1,
.mb-page-hero h1,
.mb-section-head h2,
.mb-order-flow h2,
.mb-single__content h1 {
    font-weight: 700;
}

.mb-category-tile span,
.mb-feature-strip strong,
.mb-product-card h2,
.mb-service-card h2,
.mb-post-card h2,
.mb-price strong,
.mb-contact-card strong,
.mb-info-grid h2 {
    font-weight: 700;
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
