body[data-site-id="16"] {
    background: #f6f8fb;
    color: #111827;
}

body[data-site-id="16"] .mh-page {
    overflow: hidden;
}

.mh-page {
    --mh-ink: #111827;
    --mh-muted: #5b6678;
    --mh-line: rgba(17, 24, 39, .12);
    --mh-surface: #ffffff;
    --mh-soft: #edf2f7;
    --mh-accent: #f05a24;
    --mh-yellow: #f7b731;
    --mh-green: #11735c;
    --mh-blue: #1f5f99;
    --mh-shadow: 0 22px 56px rgba(15, 23, 42, .10);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mh-hero {
    min-height: clamp(620px, 92vh, 820px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 7vw, 5rem);
}

.mh-hero__copy h1,
.mh-section__head h2,
.mh-cta h2 {
    margin: 0;
    color: var(--mh-ink);
    letter-spacing: 0;
    line-height: 1.02;
    font-weight: 800;
}

.mh-hero__copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 7vw, 6.5rem);
}

.mh-hero__copy p {
    max-width: 680px;
    margin: 1.2rem 0 0;
    color: var(--mh-muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.mh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .9rem;
    color: var(--mh-accent);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.mh-eyebrow::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: var(--mh-accent);
}

.mh-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(660px, 100%);
    margin-top: 1.8rem;
    padding: .35rem;
    border: 1px solid var(--mh-line);
    border-radius: 12px;
    background: var(--mh-surface);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}

.mh-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 1rem;
    background: transparent;
    color: var(--mh-ink);
    font: inherit;
}

.mh-search button,
.mh-btn {
    border: 0;
    border-radius: 9px;
    min-height: 44px;
    padding: 0 1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mh-search button,
.mh-btn--primary {
    background: var(--mh-accent);
    color: #fff;
}

.mh-btn--ghost {
    background: #fff;
    color: var(--mh-ink);
    border: 1px solid var(--mh-line);
}

.mh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.mh-hero__showcase {
    display: grid;
    gap: 1rem;
    padding: .9rem;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, .98), rgba(17, 115, 92, .9)),
        #111827;
    box-shadow: var(--mh-shadow);
}

.mh-showcase-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}

.mh-showcase-metrics div {
    min-height: 112px;
    display: grid;
    align-content: space-between;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.mh-showcase-metrics strong {
    color: #fff;
    font-size: clamp(1.45rem, 2.7vw, 2.35rem);
    line-height: 1;
    word-break: break-word;
}

.mh-showcase-metrics span {
    color: rgba(255, 255, 255, .74);
    font-weight: 700;
    font-size: .82rem;
}

.mh-showcase-products {
    display: grid;
    gap: .65rem;
}

.mh-showcase-product {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: .8rem;
    align-items: center;
    min-height: 104px;
    padding: .55rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    color: var(--mh-ink);
    text-decoration: none;
}

.mh-showcase-product:nth-child(even) {
    transform: translateX(-.8rem);
}

.mh-showcase-product__media {
    display: block;
    width: 88px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: var(--mh-soft);
}

.mh-showcase-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh-showcase-product__media > span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--mh-accent);
    font-size: 2rem;
    font-weight: 900;
}

.mh-showcase-product__text {
    min-width: 0;
    display: grid;
    gap: .25rem;
}

.mh-showcase-product__text small,
.mh-showcase-product__text em {
    color: var(--mh-muted);
    font-size: .76rem;
    font-style: normal;
    font-weight: 800;
}

.mh-showcase-product__text strong {
    overflow: hidden;
    color: var(--mh-ink);
    font-size: 1rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-showcase-product__text em {
    color: var(--mh-green);
}

.mh-section,
.mh-cta {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.mh-section__head {
    max-width: 760px;
    margin-bottom: 1.4rem;
}

.mh-section__head--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.mh-section__head h2,
.mh-cta h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.mh-link {
    color: var(--mh-blue);
    font-weight: 800;
    text-decoration: none;
}

.mh-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: -.35rem 0 1rem;
}

.mh-filter-row a {
    border: 1px solid var(--mh-line);
    border-radius: 999px;
    padding: .55rem .82rem;
    background: var(--mh-surface);
    color: var(--mh-ink);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.mh-cat-grid,
.mh-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}

.mh-cat-card,
.mh-brand-card {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .8rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--mh-line);
    background: var(--mh-surface);
    color: var(--mh-ink);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mh-cat-card:hover,
.mh-brand-card:hover,
.mh-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 90, 36, .26);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}

.mh-cat-card {
    min-height: 112px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.mh-cat-card__icon,
.mh-brand-card span {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(240, 90, 36, .12);
    color: var(--mh-accent);
    font-weight: 900;
}

.mh-cat-card__text {
    min-width: 0;
    display: grid;
    gap: .3rem;
}

.mh-cat-card strong,
.mh-brand-card strong {
    font-size: 1.08rem;
}

.mh-cat-card small,
.mh-brand-card small,
.mh-brand-card em {
    color: var(--mh-muted);
    font-style: normal;
    font-weight: 700;
}

.mh-brand-card em {
    color: var(--mh-green);
    font-size: .88rem;
}

.mh-brand-section {
    padding-top: clamp(2.5rem, 6vw, 4rem);
}

.mh-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.mh-product-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 12px;
    border: 1px solid var(--mh-line);
    background: var(--mh-surface);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mh-product-card--featured {
    border-color: rgba(240, 90, 36, .28);
    box-shadow: 0 18px 44px rgba(240, 90, 36, .12);
}

.mh-product-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #e8edf3, #fff);
    color: var(--mh-accent);
    text-decoration: none;
}

.mh-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh-product-card__media span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 900;
}

.mh-product-card__body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: .7rem;
    padding: 1rem;
}

.mh-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.mh-product-card__meta span {
    border-radius: 999px;
    padding: .28rem .55rem;
    font-size: .72rem;
    font-weight: 800;
}

.mh-product-card__cat {
    background: var(--mh-soft);
    color: var(--mh-muted);
}

.mh-product-card__brand {
    background: rgba(17, 115, 92, .10);
    color: var(--mh-green);
}

.mh-product-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.32;
}

.mh-product-card h3 a,
.mh-product-card__foot a {
    color: inherit;
    text-decoration: none;
}

.mh-product-card p {
    margin: 0;
    color: var(--mh-muted);
    font-size: .9rem;
    line-height: 1.55;
    min-height: 4.2em;
}

.mh-product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: auto;
    padding-top: .35rem;
}

.mh-product-card__foot strong {
    font-size: .92rem;
    color: var(--mh-ink);
}

.mh-product-card__foot a {
    flex: 0 0 auto;
    padding: .5rem .8rem;
    border-radius: 8px;
    background: var(--mh-accent);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}

.mh-product-prompt {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1rem;
    padding: .9rem 1rem;
    border: 1px solid var(--mh-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.mh-product-prompt strong {
    color: var(--mh-ink);
}

.mh-product-prompt span {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--mh-muted);
    font-weight: 700;
}

.mh-product-prompt a {
    flex: 0 0 auto;
    color: var(--mh-blue);
    font-weight: 800;
    text-decoration: none;
}

.mh-cta {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mh-cta-card {
    min-height: 320px;
    display: grid;
    align-content: space-between;
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--mh-line);
    border-radius: 16px;
    background: #fff;
    color: var(--mh-ink);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}

.mh-cta-card--dark {
    border-color: transparent;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, .98), rgba(31, 95, 153, .88)),
        #111827;
    color: #fff;
}

.mh-cta-card--dark h2 {
    color: #fff;
}

.mh-cta p {
    max-width: 650px;
    margin: 0;
    color: var(--mh-muted);
    line-height: 1.7;
}

.mh-cta-card--dark p {
    color: rgba(255, 255, 255, .72);
}

@media (max-width: 980px) {
    .mh-hero,
    .mh-section__head--split {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .mh-cta {
        grid-template-columns: 1fr;
    }

    .mh-cat-grid,
    .mh-brand-grid,
    .mh-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mh-hero {
        min-height: auto;
        padding-top: 6rem;
    }

    .mh-search {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .mh-search input {
        min-height: 44px;
    }

    .mh-showcase-metrics {
        grid-template-columns: 1fr;
    }

    .mh-showcase-product {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .mh-showcase-product:nth-child(even) {
        transform: none;
    }

    .mh-showcase-product__media {
        width: 72px;
    }

    .mh-cat-grid,
    .mh-brand-grid,
    .mh-product-grid {
        grid-template-columns: 1fr;
    }

    .mh-product-prompt {
        display: grid;
        align-items: start;
    }

    .mh-showcase-metrics div {
        min-height: 112px;
    }
}
