.mh-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 620px;
    width: 100%;
    overflow: hidden;
    background: #14110f;
    isolation: isolate;
}
.mh-hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
    pointer-events: none;
}
.mh-hero-slide.is-active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.mh-hero-slide video,
.mh-hero-slide .mh-poster {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.08);
    transition: transform 10s ease-out;
}
.mh-hero-slide.is-active video,
.mh-hero-slide.is-active .mh-poster { transform: scale(1); }
.mh-hero-slide .mh-poster {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.mh-hero-slide::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0, calc(var(--hero-overlay, 0.18) * 0.7)) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0, calc(var(--hero-overlay, 0.18) * 1.6)) 100%);
    pointer-events: none;
}
.mh-hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 96px 56px;
    color: #fff;
    display: grid;
    pointer-events: none;
}
.mh-hero-content > * { pointer-events: auto; }
.mh-hero-content-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-self: center;
    justify-self: center;
}
.mh-hero-pos-tl { align-content: start;  justify-content: start;  }
.mh-hero-pos-tc { align-content: start;  justify-content: center; }
.mh-hero-pos-tr { align-content: start;  justify-content: end;    }
.mh-hero-pos-ml { align-content: center; justify-content: start;  }
.mh-hero-pos-mc { align-content: center; justify-content: center; }
.mh-hero-pos-mr { align-content: center; justify-content: end;    }
.mh-hero-pos-bl { align-content: end;    justify-content: start;  }
.mh-hero-pos-bc { align-content: end;    justify-content: center; }
.mh-hero-pos-br { align-content: end;    justify-content: end;    }
.mh-hero-pos-tc .mh-hero-content-inner,
.mh-hero-pos-mc .mh-hero-content-inner,
.mh-hero-pos-bc .mh-hero-content-inner { align-items: center; }
.mh-hero-pos-tr .mh-hero-content-inner,
.mh-hero-pos-mr .mh-hero-content-inner,
.mh-hero-pos-br .mh-hero-content-inner { align-items: flex-end; }
.mh-hero-align-left   .mh-hero-content-inner { text-align: left;   }
.mh-hero-align-center .mh-hero-content-inner { text-align: center; }
.mh-hero-align-right  .mh-hero-content-inner { text-align: right;  }
.mh-hero-theme-dark { color: var(--mk-ink); }
.mh-hero-theme-dark .mh-hero-title,
.mh-hero-theme-dark .mh-hero-sub,
.mh-hero-theme-dark .mh-hero-eyebrow { text-shadow: 0 1px 8px rgba(255,255,255,0.5); }
.mh-hero-theme-dark .btn-light { background: var(--mk-ink); color: #fff; border-color: var(--mk-ink); }
.mh-hero-theme-dark .btn-light:hover { background: #000; border-color: #000; }
.mh-hero-theme-dark .btn-outline-light { color: var(--mk-ink); border-color: var(--mk-ink); }
.mh-hero-theme-dark .btn-outline-light:hover { background: var(--mk-ink); color: #fff; border-color: var(--mk-ink); }
.mh-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.mh-hero-title {
    font-family: var(--mk-font-display);
    font-weight: 300;
    font-size: clamp(1.85rem, 4.2vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.012em;
    margin: 0 0 22px;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
html[lang="ko"] .mh-hero-title { line-height: 1.18; }
html[lang="ko"] .mh-hero-title { font-family: 'Noto Serif KR', var(--mk-font-display), serif; font-weight: 400; }
.mh-hero-sub {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    max-width: 460px;
    margin: 0 0 26px;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.mh-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.mh-hero-actions .btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.8); }
.mh-hero-actions .btn-outline-light:hover { background: #fff; color: var(--mk-ink); border-color: #fff; }

.mh-hero-dots {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}
.mh-hero-dot {
    width: 32px; height: 4px;
    background: rgba(255,255,255,0.5);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .35s, width .35s;
    border-radius: 2px;
}
.mh-hero-dot.is-active {
    background: #fff;
    width: 56px;
}
.mh-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 6;
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: mhScrollFloat 2.6s ease-in-out infinite;
}
.mh-hero-scroll::after {
    content: "";
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, currentColor, transparent);
}
@keyframes mhScrollFloat {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
    50%      { transform: translate(-50%, 10px); opacity: 1; }
}

@media (max-width: 991px) {
    .mh-hero-content { padding: 0 32px 64px; }
    .mh-hero-content-inner { grid-template-columns: 1fr; gap: 18px; }
    .mh-hero-dots { right: 32px; bottom: 36px; }
    .mh-hero-scroll { display: none; }
}
@media (max-width: 640px) {
    .mh-hero { min-height: 540px; }
    .mh-hero-content { padding: 56px 22px; }
    .mh-hero-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); margin-bottom: 16px; }
    .mh-hero-sub { font-size: 13px; margin-bottom: 20px; }
    .mh-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.26em; margin-bottom: 16px; }
    .mh-hero-dots { right: 16px; }
    .mh-manifest { padding: 64px 0 56px; }
    .mh-manifest h2 { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
    .mh-manifest p { font-size: 13.5px; }
    .mh-pillars { grid-template-columns: 1fr; }
    .mh-pillar { padding: 32px 22px; border-right: 0; border-bottom: 1px solid var(--mk-line-soft); }
    .mh-pillar:last-child { border-bottom: 0; }
    .mh-pillar h6 { font-size: 14.5px; }
    .mh-pillar p { font-size: 12.5px; }
    .mh-feature { padding: 64px 0; }
    .mh-feature-info h2 { font-size: clamp(1.4rem, 5.5vw, 1.85rem); }
    .mh-feature-info .mh-price { font-size: clamp(1.2rem, 4vw, 1.55rem); }
    .mh-feature-info p { font-size: 13.5px; }
    .mh-collection { padding: 64px 0 32px; }
    .mh-collection-head h2 { font-size: clamp(1.35rem, 5vw, 1.75rem); }
    .mh-clinic { padding: 64px 0; }
    .mh-clinic h2 { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
    .mh-zalo { padding: 64px 0; }
    .mh-zalo-info h2 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
    .mh-card-name { font-size: 13.5px; }
    .mh-card-sub { font-size: 12px; min-height: 0; }
    .mh-card-price { font-size: 14px; }
    .mh-feature-meta dl { gap: 8px 16px; }
    .mh-feature-meta dt { font-size: 10px; }
    .mh-feature-meta dd { font-size: 13px; }
}

.mh-mall-banner {
    background: var(--mk-paper-2);
    border-bottom: 1px solid var(--mk-line-soft);
    padding: 14px 0;
}
.mh-mall-banner-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12.5px;
}
.mh-mall-banner i { color: var(--mk-accent); margin-right: 8px; }

.mh-manifest {
    padding: 110px 0 90px;
    text-align: center;
}
.mh-manifest .mk-eyebrow { color: var(--mk-accent); }
.mh-manifest h2 {
    max-width: 780px;
    margin: 0 auto 22px;
    font-family: var(--mk-font-display);
    font-weight: 300;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    line-height: 1.24;
    letter-spacing: -0.008em;
    color: var(--mk-ink);
}
.mh-manifest p {
    font-size: 14.5px;
    line-height: 1.8;
}
.mh-manifest h2 em { font-style: italic; color: var(--mk-accent); font-weight: 400; }
.mh-manifest p {
    max-width: 620px; margin: 0 auto 32px;
    color: var(--mk-ink-2);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
}

.mh-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--mk-line);
    border-bottom: 1px solid var(--mk-line);
    background: var(--mk-paper);
}
.mh-pillar {
    padding: 48px 28px;
    text-align: center;
    border-right: 1px solid var(--mk-line-soft);
}
.mh-pillar:last-child { border-right: 0; }
.mh-pillar i {
    font-size: 1.6rem;
    color: var(--mk-accent);
    margin-bottom: 18px;
    display: inline-block;
}
.mh-pillar h6 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--mk-ink);
    margin: 0 0 8px;
    font-family: var(--mk-font-en);
}
html[lang="ko"] .mh-pillar h6 { font-family: var(--mk-font-ko); }
html[lang="vi"] .mh-pillar h6 { font-family: var(--mk-font-vi); }
.mh-pillar p {
    font-size: 13px;
    color: var(--mk-muted);
    margin: 0;
    line-height: 1.65;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 991px) {
    .mh-pillars { grid-template-columns: repeat(2, 1fr); }
    .mh-pillar:nth-child(2) { border-right: 0; }
    .mh-pillar:nth-child(-n+2) { border-bottom: 1px solid var(--mk-line-soft); }
}
@media (max-width: 480px) {
    .mh-pillars { grid-template-columns: 1fr; }
    .mh-pillar { border-right: 0; border-bottom: 1px solid var(--mk-line-soft); }
    .mh-pillar:last-child { border-bottom: 0; }
}

.mh-feature {
    padding: 110px 0;
    background: var(--mk-paper);
}
.mh-feature-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.mh-feature-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--mk-radius-lg);
    background: linear-gradient(135deg, var(--mk-paper-2) 0%, #efe7e0 100%);
    display: flex; align-items: center; justify-content: center;
}
.mh-feature-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 36px;
    transition: transform .8s ease;
}
.mh-feature-image:hover img { transform: scale(1.03); }
.mh-feature-info .mk-eyebrow { color: var(--mk-accent); }
.mh-feature-info h2 {
    font-family: var(--mk-font-display);
    font-weight: 300;
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.008em;
    margin-bottom: 16px;
}
.mh-feature-info .mh-price {
    font-family: var(--mk-font-display);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: var(--mk-accent);
    margin: 0 0 22px;
    font-weight: 400;
}
.mh-feature-info p { font-size: 14.5px; line-height: 1.8; }
.mh-feature-info p { font-size: 15px; color: var(--mk-ink-2); line-height: 1.8; margin-bottom: 22px; font-weight: 300; }
.mh-feature-meta {
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid var(--mk-line);
    border-bottom: 1px solid var(--mk-line);
}
.mh-feature-meta dl { margin: 0; display: grid; grid-template-columns: 130px 1fr; gap: 12px 18px; }
.mh-feature-meta dt {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mk-muted);
    font-weight: 500;
}
.mh-feature-meta dd { margin: 0; font-size: 13.5px; color: var(--mk-ink-2); }

.mh-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius);
    overflow: hidden;
}
.mh-qty button {
    background: transparent;
    border: 0;
    padding: 0 18px;
    font-size: 17px;
    color: var(--mk-ink-2);
    cursor: pointer;
}
.mh-qty button:hover { background: var(--mk-paper); color: var(--mk-ink); }
.mh-qty input {
    border: 0;
    width: 64px;
    text-align: center;
    background: transparent;
    color: var(--mk-ink);
    font-size: 14px;
    font-weight: 500;
}
.mh-feature-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 26px;
}
.mh-feature-total {
    margin-left: auto;
    text-align: right;
}
.mh-feature-total small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--mk-muted);
    margin-bottom: 2px;
}
.mh-feature-total .total {
    font-family: var(--mk-font-display);
    font-size: 1.7rem;
    color: var(--mk-ink);
    line-height: 1;
}
@media (max-width: 991px) {
    .mh-feature { padding: 80px 0; }
    .mh-feature-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 22px; }
    .mh-feature-meta dl { grid-template-columns: 110px 1fr; }
}
@media (max-width: 480px) {
    .mh-feature-cta { flex-direction: column; align-items: stretch; }
    .mh-feature-cta .btn { width: 100%; }
    .mh-feature-total { margin-left: 0; text-align: left; }
    .mh-feature-meta dl { grid-template-columns: 90px 1fr; gap: 8px 14px; }
}

.mh-collection {
    padding: 110px 0 64px;
}
.mh-collection-head {
    max-width: 1320px; margin: 0 auto 56px;
    padding: 0 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.mh-collection-head h2 {
    font-family: var(--mk-font-display);
    font-weight: 300;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.18;
    letter-spacing: -0.008em;
    margin: 0;
}
.mh-collection-head .mk-eyebrow { color: var(--mk-accent); margin-bottom: 10px; }
.mh-collection-head .meta { color: var(--mk-muted); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.mh-collection-grid {
    max-width: 1320px; margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 28px;
}
.mh-card {
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: transform .4s ease;
    display: flex; flex-direction: column;
}
.mh-card-img {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--mk-paper-2);
    overflow: hidden;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px var(--mk-line-soft);
    margin-bottom: 20px;
}
.mh-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255,255,255,0.55), rgba(255,255,255,0) 62%);
    pointer-events: none;
    z-index: 2;
}
.mh-card-img::after {
    content: "";
    position: absolute;
    top: -20%; bottom: -20%;
    left: -90%;
    width: 35%;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: skewX(-12deg);
    transition: left 1.1s cubic-bezier(.2,.7,.3,1);
    pointer-events: none;
    z-index: 3;
}
.mh-card:hover .mh-card-img::after { left: 180%; }
.mh-card-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    padding: 6%;
    transition: transform .8s cubic-bezier(.25,.45,.45,.95);
    z-index: 1;
}
.mh-card:hover .mh-card-img img { transform: scale(1.04); }
.mh-card-indicator {
    position: absolute;
    top: 16px; right: 16px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    z-index: 4;
}
.mh-card-indicator::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    border-top: 1px solid var(--mk-ink);
    border-right: 1px solid var(--mk-ink);
    transform: translate(-60%, -50%) rotate(45deg);
}
.mh-card:hover .mh-card-indicator { opacity: 1; transform: translateY(0); }
.mh-card-name {
    font-family: var(--mk-font-en);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--mk-ink);
    line-height: 1.4;
    margin: 0 0 6px;
    letter-spacing: 0.005em;
}
html[lang="ko"] .mh-card-name { font-family: var(--mk-font-ko); font-weight: 600; }
html[lang="vi"] .mh-card-name { font-family: var(--mk-font-vi); }
.mh-card-sub {
    font-size: 13px;
    color: var(--mk-muted);
    line-height: 1.6;
    margin: 0 0 10px;
    min-height: 36px;
}
.mh-card-price {
    font-family: var(--mk-font-display);
    font-size: 15px;
    color: var(--mk-ink);
    font-weight: 400;
    letter-spacing: 0.005em;
    margin: 0;
}
@media (max-width: 991px) {
    .mh-collection-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 22px; }
}
@media (max-width: 700px) {
    .mh-collection { padding: 80px 0 40px; }
    .mh-collection-head { padding: 0 22px; margin-bottom: 36px; }
    .mh-collection-grid { padding: 0 22px; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

.mh-clinic {
    padding: 100px 0;
    background: var(--mk-ink);
    color: var(--mk-paper);
    position: relative;
    overflow: hidden;
}
.mh-clinic::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(163,120,109,0.12) 0%, transparent 55%),
        url('../../images/hero/hero4.webp') center / cover no-repeat;
    opacity: 0.55;
    z-index: 0;
}
.mh-clinic-inner {
    position: relative; z-index: 1;
    max-width: 880px; margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.mh-clinic .mk-eyebrow { color: var(--mk-accent); }
.mh-clinic h2 {
    font-family: var(--mk-font-display);
    font-weight: 300;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.24;
    letter-spacing: -0.008em;
}
.mh-clinic h2 em { font-style: italic; color: var(--mk-accent); font-weight: 400; }
.mh-clinic p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 32px;
}

.mh-zalo {
    padding: 100px 0;
    background: var(--mk-paper);
    border-top: 1px solid var(--mk-line);
}
.mh-zalo-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.mh-zalo-info .mk-eyebrow { color: var(--mk-accent); }
.mh-zalo-btn i { font-size: 13px; opacity: 0.95; }
.mh-zalo-info h2 {
    font-family: var(--mk-font-display);
    font-weight: 300;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.22;
    letter-spacing: -0.008em;
    margin: 0 0 16px;
}
.mh-zalo-info p {
    font-size: 14.5px;
    color: var(--mk-ink-2);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 300;
    white-space: pre-line;
}
.mh-zalo-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: zaloStep;
}
.mh-zalo-steps li {
    counter-increment: zaloStep;
    padding: 18px 22px 18px 56px;
    position: relative;
    background: #fff;
    border: 1px solid var(--mk-line-soft);
    border-radius: var(--mk-radius-lg);
    margin-bottom: 12px;
    font-size: 13.5px;
    color: var(--mk-ink-2);
    line-height: 1.55;
}
.mh-zalo-steps li::before {
    content: counter(zaloStep, decimal-leading-zero);
    position: absolute;
    left: 22px; top: 18px;
    font-family: var(--mk-font-display);
    font-size: 17px;
    color: var(--mk-accent);
    font-weight: 400;
}
@media (max-width: 991px) {
    .mh-zalo { padding: 72px 0; }
    .mh-zalo-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 22px; }
    .mh-clinic-inner { padding: 0 22px; }
}
@media (max-width: 640px) {
    .mh-mall-banner-inner { padding: 0 22px; gap: 12px; font-size: 12px; flex-wrap: wrap; }
    .mh-zalo-steps li { padding: 16px 18px 16px 50px; font-size: 13px; }
}

.mh-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── DARK MODE overrides for home page ─── */
:root[data-theme="dark"] .mh-hero { background: #000; }
:root[data-theme="dark"] .mh-mall-banner { background: var(--mk-paper-2); border-bottom-color: var(--mk-line-soft); }
:root[data-theme="dark"] .mh-manifest h2 { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-manifest h2 em { color: var(--mk-accent-deep); }
:root[data-theme="dark"] .mh-manifest p { color: var(--mk-ink-2); }
:root[data-theme="dark"] .mh-pillars {
    background: var(--mk-paper);
    border-top-color: var(--mk-line);
    border-bottom-color: var(--mk-line);
}
:root[data-theme="dark"] .mh-pillar { border-right-color: var(--mk-line-soft); }
:root[data-theme="dark"] .mh-pillar h6 { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-pillar p { color: var(--mk-ink-3); }
:root[data-theme="dark"] .mh-feature { background: var(--mk-paper); }
:root[data-theme="dark"] .mh-feature-image {
    background: linear-gradient(135deg, var(--mk-paper-2) 0%, #1d1814 100%);
}
:root[data-theme="dark"] .mh-feature-meta { border-top-color: var(--mk-line); border-bottom-color: var(--mk-line); }
:root[data-theme="dark"] .mh-feature-meta dd { color: var(--mk-ink-2); }
:root[data-theme="dark"] .mh-feature-info p { color: var(--mk-ink-2); }
:root[data-theme="dark"] .mh-feature-total .total { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-qty { border-color: var(--mk-line); }
:root[data-theme="dark"] .mh-qty button { color: var(--mk-ink-2); }
:root[data-theme="dark"] .mh-qty button:hover { background: var(--mk-paper-2); color: var(--mk-ink); }
:root[data-theme="dark"] .mh-qty input { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-card-img {
    background: var(--mk-paper-2);
    box-shadow: inset 0 0 0 1px var(--mk-line);
}
:root[data-theme="dark"] .mh-card-img::before {
    background: radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255,236,210,0.18), rgba(0,0,0,0) 62%);
}
:root[data-theme="dark"] .mh-card-img::after {
    background: linear-gradient(115deg, transparent 0%, rgba(255,236,210,0.22) 50%, transparent 100%);
}
:root[data-theme="dark"] .mh-card-indicator { background: rgba(20,17,15,0.72); }
:root[data-theme="dark"] .mh-card-indicator::before {
    border-top-color: var(--mk-accent);
    border-right-color: var(--mk-accent);
}
:root[data-theme="dark"] .mh-card-name { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-card-sub { color: var(--mk-muted); }
:root[data-theme="dark"] .mh-card-price { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-clinic {
    background: #000;
    color: var(--mk-ink);
}
:root[data-theme="dark"] .mh-clinic::before {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(201,162,116,0.16) 0%, transparent 55%),
        url('../../images/hero/hero4.webp') center / cover no-repeat;
    opacity: 0.5;
}
:root[data-theme="dark"] .mh-clinic h2 { color: var(--mk-ink); }
:root[data-theme="dark"] .mh-clinic h2 em { color: var(--mk-accent-deep); }
:root[data-theme="dark"] .mh-clinic p { color: var(--mk-ink-2); }
:root[data-theme="dark"] .mh-zalo {
    background: var(--mk-paper);
    border-top-color: var(--mk-line);
}
:root[data-theme="dark"] .mh-zalo-info p { color: var(--mk-ink-2); }
:root[data-theme="dark"] .mh-zalo-steps li {
    background: var(--mk-card);
    border-color: var(--mk-line-soft);
    color: var(--mk-ink-2);
}
:root[data-theme="dark"] .mh-zalo-steps li::before { color: var(--mk-accent-deep); }
/* Hero light-text-on-dark-bg: keep btn-light visible (white pill) even in dark theme */
:root[data-theme="dark"] .mh-hero-actions .btn-outline-light:hover { background: #fff; color: var(--mk-ink); border-color: #fff; }
