:root {
  --mh-ink: #102b38;
  --mh-ink-soft: #526a75;
  --mh-deep: #0b3447;
  --mh-deeper: #072938;
  --mh-teal: #0ba8a0;
  --mh-teal-dark: #07857f;
  --mh-mint: #dff7f4;
  --mh-cyan: #47c9d3;
  --mh-sky: #eaf7fa;
  --mh-blue: #2879d8;
  --mh-coral: #ff735c;
  --mh-surface: #ffffff;
  --mh-bg: #f5f8f9;
  --mh-line: #dce7ea;
  --mh-success: #16885b;
  --mh-radius-sm: 12px;
  --mh-radius: 18px;
  --mh-radius-lg: 28px;
  --mh-shadow-sm: 0 8px 24px rgba(10, 52, 71, .07);
  --mh-shadow: 0 20px 55px rgba(10, 52, 71, .12);
  --mh-font: Inter, Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mh-ink);
  background: var(--mh-bg);
  font-family: var(--mh-font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--mh-deep); text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--mh-teal-dark); }
img { max-width: 100%; }
.container { max-width: 1280px; }
.mh-site-shell { min-height: 100vh; overflow: hidden; }
.mh-main { min-height: 55vh; }
.mh-alerts { position: fixed; z-index: 1100; top: 18px; left: 50%; width: min(620px, calc(100% - 30px)); transform: translateX(-50%); }
.mh-alerts .alert { border: 0; border-radius: var(--mh-radius); box-shadow: var(--mh-shadow); }

/* Header */
.mh-utility { color: #d8ecf1; background: var(--mh-deeper); font-size: 12.5px; }
.mh-utility__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mh-utility__promise, .mh-utility__links, .mh-utility__links a, .mh-utility__locale { display: flex; align-items: center; gap: 8px; }
.mh-utility__promise i { color: #69ddd4; }
.mh-utility__links { gap: 22px; }
.mh-utility__links a { color: #d8ecf1; }
.mh-utility__links a:hover { color: #fff; }
.mh-utility__locale form, .mh-utility__locale .dropdown { display: inline-flex; margin: 0; }
.mh-utility__locale .btn-link, .mh-utility__locale button { padding: 0 2px; color: #d8ecf1 !important; font-size: 12.5px; text-decoration: none; border: 0; }
.mh-header { position: relative; z-index: 100; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(220,231,234,.75); transition: box-shadow .25s ease, transform .25s ease; }
.mh-header.is-stuck { position: sticky; top: 0; box-shadow: 0 10px 35px rgba(7,41,56,.1); }
.mh-header__inner { min-height: 88px; display: grid; grid-template-columns: 230px minmax(320px, 1fr) auto; align-items: center; gap: clamp(20px, 3vw, 48px); }
.mh-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--mh-ink); }
.mh-brand:hover { color: var(--mh-ink); transform: translateY(-1px); }
.mh-brand__logo { width:54px; height:54px; flex:0 0 54px; display:block; object-fit:contain; }
.mh-brand__mark { position: relative; width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px; background: linear-gradient(145deg, var(--mh-teal), #16c1b7); box-shadow: 0 10px 22px rgba(11,168,160,.24); transform: rotate(-3deg); }
.mh-brand__mark span { position: absolute; top: 50%; left: 50%; display: block; border-radius: 5px; background: #fff; transform: translate(-50%, -50%); }
.mh-brand__mark span:first-child { width: 24px; height: 8px; }
.mh-brand__mark span:last-child { width: 8px; height: 24px; }
.mh-brand__copy { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 2px; line-height: 1; }
.mh-brand__copy strong, .mh-brand__copy b { font-size: 23px; letter-spacing: -.7px; }
.mh-brand__copy strong { font-weight: 800; }
.mh-brand__copy b { color: var(--mh-teal-dark); font-weight: 800; }
.mh-brand__copy small { grid-column: 1 / -1; margin-top: 6px; color: var(--mh-ink-soft); font-size: 9.5px; font-weight: 600; letter-spacing: .15px; white-space: nowrap; }
.mh-header__search { width: 100%; }
.mh-search { position: relative; display: flex; height: 52px; margin: 0; border: 1px solid var(--mh-line); border-radius: 16px; background: #f7fafb; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.mh-search:focus-within { background: #fff; border-color: rgba(11,168,160,.65); box-shadow: 0 0 0 4px rgba(11,168,160,.1); }
.mh-search__icon { position: absolute; left: 18px; top: 50%; color: #78909a; transform: translateY(-50%); }
.mh-search input { min-width: 0; flex: 1; padding: 0 14px 0 48px; color: var(--mh-ink); background: transparent; border: 0; outline: 0; font: inherit; }
.mh-search input::placeholder { color: #8498a0; }
.mh-search button { margin: 5px; padding: 0 22px; color: #fff; background: var(--mh-deep); border: 0; border-radius: 12px; font-weight: 750; }
.mh-search button:hover { background: var(--mh-teal-dark); }
.mh-search-suggest { position: absolute; z-index: 1200; left: 0; right: 0; top: calc(100% + 9px); max-height: min(620px, 72vh); overflow: auto; padding: 8px; background: #fff; border: 1px solid var(--mh-line); border-radius: 18px; box-shadow: 0 24px 70px rgba(7,41,56,.2); }
.mh-search-suggest[hidden] { display: none; }
.mh-search-suggest__heading { padding: 8px 10px 7px; color: #71868e; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.mh-search-suggest__item { display: grid; grid-template-columns: 72px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 9px; color: var(--mh-ink); border-radius: 13px; text-decoration: none; transition: background .15s ease; }
.mh-search-suggest__item:hover, .mh-search-suggest__item.is-active { color: var(--mh-ink); background: #effafa; }
.mh-search-suggest__item img { width: 72px; height: 72px; object-fit: contain; background: #f7fafb; border: 1px solid #e7eff1; border-radius: 11px; }
.mh-search-suggest__copy { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.mh-search-suggest__copy strong { overflow: hidden; font-size: 14px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.mh-search-suggest__meta { color: var(--mh-teal-dark); font-size: 11px; font-weight: 750; }
.mh-search-suggest__price { display: flex; flex-direction: column; align-items: flex-end; color: var(--mh-deep); font-size: 15px; font-weight: 850; white-space: nowrap; }
.mh-search-suggest__price del { color: #8b9da4; font-size: 11px; font-weight: 600; }
.mh-search-suggest__all { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 5px; padding: 12px; color: var(--mh-teal-dark); background: #effafa; border-radius: 12px; font-size: 13px; font-weight: 800; text-decoration: none; }
.mh-search-suggest__loading { padding: 25px 12px; color: #71868e; text-align: center; font-size: 13px; }
.mh-header__actions { display: flex; align-items: center; gap: 6px; }
.mh-action { min-width: 58px; padding: 7px 9px; display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--mh-ink); background: transparent; border: 0; border-radius: 12px; font-size: 11px; white-space: nowrap; }
.mh-action i { font-size: 19px; }
.mh-action:hover, .mh-account.show .mh-action { color: var(--mh-teal-dark); background: var(--mh-mint); }
.mh-dropdown { padding: 8px; border: 1px solid var(--mh-line); border-radius: 14px; box-shadow: var(--mh-shadow-sm); }
.mh-dropdown .dropdown-item { border-radius: 9px; }
.mh-header__cart { min-width: 142px; }
.mh-cart-button { width: 100%; min-height: 52px; padding: 6px 12px 6px 7px; display: flex; align-items: center; gap: 9px; color: #fff; background: var(--mh-deep); border: 0; border-radius: 15px; text-align: left; }
.mh-cart-button:hover, .mh-cart-button[aria-expanded="true"] { background: var(--mh-teal-dark); }
.mh-cart-button__icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; color: var(--mh-deep); background: #fff; border-radius: 11px; }
.mh-cart-button__text { min-width: 0; display: flex; flex-direction: column; line-height: 1.15; }
.mh-cart-button__text small { opacity: .72; font-size: 10px; }
.mh-cart-button__text strong { max-width: 90px; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.mh-mini-cart { width: min(410px, calc(100vw - 24px)); margin-top: 10px !important; padding: 0; overflow: hidden; border: 1px solid var(--mh-line); border-radius: 18px; box-shadow: var(--mh-shadow); }
.mh-mini-cart__head, .mh-mini-cart__totals, .mh-mini-cart__actions { padding: 16px 18px; }
.mh-mini-cart__head { display: flex; justify-content: space-between; background: var(--mh-bg); border-bottom: 1px solid var(--mh-line); }
.mh-mini-cart__head span { color: var(--mh-ink-soft); font-size: 12px; }
.mh-mini-cart__items { max-height: 360px; overflow-y: auto; }
.mh-mini-cart__item { padding: 13px 16px; display: grid; grid-template-columns: 56px 1fr 28px; align-items: center; gap: 12px; border-bottom: 1px solid var(--mh-line); }
.mh-mini-cart__item img { width: 56px; height: 56px; object-fit: contain; border-radius: 10px; background: var(--mh-bg); }
.mh-mini-cart__name { display: -webkit-box; overflow: hidden; color: var(--mh-ink); font-size: 13px; font-weight: 700; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.mh-mini-cart__item small { display: block; margin-top: 4px; color: var(--mh-ink-soft); }
.mh-mini-cart__item button { width: 28px; height: 28px; color: #8ba0a8; background: transparent; border: 0; border-radius: 8px; }
.mh-mini-cart__item button:hover { color: #d54646; background: #fff0f0; }
.mh-mini-cart__totals { display: grid; gap: 6px; }
.mh-mini-cart__totals span { display: flex; justify-content: space-between; }
.mh-mini-cart__actions { padding-top: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mh-mini-cart__empty { padding: 35px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.mh-mini-cart__empty i { margin-bottom: 12px; color: var(--mh-teal); font-size: 34px; }
.mh-mini-cart__empty span { color: var(--mh-ink-soft); }
.mh-mobile-toggle { display: none; width: 42px; height: 42px; color: var(--mh-deep); background: var(--mh-sky); border: 0; border-radius: 12px; }

/* Navigation */
.mh-category-bar { border-top: 1px solid #eef3f4; }
.mh-category-bar #menu { min-height: 0; margin: 0; padding: 0; background: transparent; border: 0; border-radius: 0; }
.mh-category-nav { min-height: 48px; margin: 0; padding: 0; display: flex; align-items: stretch; gap: 4px; list-style: none; }
.mh-category-nav > li { position: relative; display: flex; align-items: stretch; }
.mh-category-nav > li > a { padding: 0 14px; display: flex; align-items: center; color: #27434f; font-size: 13px; font-weight: 700; text-transform: none; }
.mh-category-nav > li > a:hover, .mh-category-nav > li:hover > a { color: var(--mh-teal-dark); background: var(--mh-mint); }
.mh-category-nav__all > a { gap: 8px; color: #fff !important; background: var(--mh-teal-dark) !important; border-radius: 12px 12px 0 0; }
.mh-mega-menu { top: 100% !important; min-width: 520px; padding: 18px; border: 1px solid var(--mh-line); border-radius: 0 0 18px 18px; box-shadow: var(--mh-shadow); }
.mh-mega-menu__title { margin-bottom: 13px; padding-bottom: 11px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--mh-line); }
.mh-mega-menu__title span { font-weight: 800; }
.mh-mega-menu__title a { color: var(--mh-teal-dark); font-size: 12px; font-weight: 700; }
.mh-mega-menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px 15px; }
.mh-mega-menu__grid a { padding: 8px 10px; border-radius: 9px; font-size: 13px; }
.mh-mega-menu__grid a:hover { background: var(--mh-sky); }

/* Buttons */
.mh-btn-primary, .btn-primary { color: #fff !important; background: var(--mh-teal-dark); border-color: var(--mh-teal-dark); border-radius: 12px; font-weight: 750; box-shadow: none; }
.mh-btn-primary:hover, .btn-primary:hover { background: var(--mh-deep); border-color: var(--mh-deep); transform: translateY(-1px); }
.mh-btn-secondary { color: var(--mh-deep); background: #fff; border: 1px solid var(--mh-line); border-radius: 12px; font-weight: 700; }
.mh-btn-secondary:hover { background: var(--mh-bg); border-color: #b9cdd3; }
.mh-btn-ghost { color: var(--mh-deep); background: rgba(255,255,255,.72); border: 1px solid rgba(11,52,71,.13); border-radius: 14px; font-weight: 750; }
.mh-btn-ghost:hover { color: var(--mh-teal-dark); background: #fff; }
.mh-btn-light { color: var(--mh-deep); background: #fff; border: 0; border-radius: 14px; font-weight: 800; }
.mh-btn-lg { padding: 14px 22px; display: inline-flex; align-items: center; gap: 10px; }
.btn { border-radius: 12px; }
.btn-light { color: var(--mh-deep); background: #fff; border-color: var(--mh-line); }
.btn-danger { background: #db5c5c; border-color: #db5c5c; }

/* Home */
.mh-home { background: var(--mh-bg); }
.mh-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #e9f8f7 0%, #f4fbfc 55%, #e7f4fb 100%); }
.mh-hero::before, .mh-hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.mh-hero::before { width: 500px; height: 500px; top: -320px; right: 5%; background: rgba(71,201,211,.18); }
.mh-hero::after { width: 360px; height: 360px; bottom: -280px; left: 4%; background: rgba(11,168,160,.15); }
.mh-hero__grid { position: relative; z-index: 1; min-height: 530px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: center; gap: clamp(45px, 7vw, 110px); }
.mh-hero__content { padding: 65px 0; }
.mh-eyebrow, .mh-kicker { color: var(--mh-teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mh-eyebrow { padding: 7px 11px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.78); border: 1px solid rgba(11,168,160,.2); border-radius: 999px; }
.mh-hero h1 { max-width: 760px; margin: 19px 0 18px; color: var(--mh-deep); font-size: clamp(42px, 5vw, 68px); font-weight: 820; line-height: 1.04; letter-spacing: -.045em; }
.mh-hero h1 em { color: var(--mh-teal-dark); font-style: normal; }
.mh-hero__content > p { max-width: 660px; margin: 0; color: #486671; font-size: 18px; line-height: 1.65; }
.mh-hero__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.mh-hero__meta { margin-top: 33px; display: flex; flex-wrap: wrap; gap: 25px; }
.mh-hero__meta span { padding-right: 25px; display: flex; flex-direction: column; color: var(--mh-ink-soft); font-size: 11px; line-height: 1.25; border-right: 1px solid rgba(11,52,71,.14); }
.mh-hero__meta span:last-child { padding-right: 0; border: 0; }
.mh-hero__meta strong { margin-bottom: 4px; color: var(--mh-deep); font-size: 19px; }
.mh-hero__visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.mh-hero-card--main { position: relative; width: min(390px, 86%); padding: 38px; color: #fff; background: linear-gradient(150deg, var(--mh-deep), #0d5362); border: 1px solid rgba(255,255,255,.16); border-radius: 34px; box-shadow: 0 35px 80px rgba(7,41,56,.24); transform: rotate(2deg); }
.mh-hero-card--main::before { content: "+"; position: absolute; right: 27px; top: 12px; color: rgba(255,255,255,.08); font-size: 120px; font-weight: 800; line-height: 1; }
.mh-hero-card__icon { width: 64px; height: 64px; margin-bottom: 34px; display: grid; place-items: center; color: var(--mh-deep); background: #7ce3db; border-radius: 20px; font-size: 27px; }
.mh-hero-card--main small { display: block; color: #80dcd7; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.mh-hero-card--main strong { max-width: 280px; margin: 9px 0 12px; display: block; font-size: 29px; line-height: 1.12; }
.mh-hero-card--main p { margin: 0; color: #c6e0e5; font-size: 13px; }
.mh-hero-photo { width: min(620px, 100%); margin: 0; overflow: hidden; background: #fff; border: 1px solid rgba(18,80,94,.1); border-radius: 34px; box-shadow: 0 35px 80px rgba(7,41,56,.2); transform: rotate(1deg); }
.mh-hero-photo img { display: block; width: 100%; height: auto; aspect-ratio: 1600 / 874; object-fit: cover; }
.mh-pulse { height: 50px; margin-top: 27px; display: flex; align-items: center; gap: 6px; }
.mh-pulse span { width: 6px; height: 16px; background: #4fc9c3; border-radius: 10px; }
.mh-pulse span:nth-child(2), .mh-pulse span:nth-child(6) { height: 28px; }
.mh-pulse span:nth-child(3), .mh-pulse span:nth-child(5) { height: 42px; }
.mh-pulse span:nth-child(4) { height: 20px; }
.mh-float-card { position: absolute; padding: 13px 16px; display: flex; align-items: center; gap: 11px; color: var(--mh-deep); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.7); border-radius: 16px; box-shadow: var(--mh-shadow-sm); backdrop-filter: blur(12px); }
.mh-float-card i { width: 35px; height: 35px; display: grid; place-items: center; color: var(--mh-teal-dark); background: var(--mh-mint); border-radius: 10px; }
.mh-float-card span { display: flex; flex-direction: column; line-height: 1.25; }
.mh-float-card strong { font-size: 12px; }
.mh-float-card small { color: var(--mh-ink-soft); font-size: 10px; }
.mh-float-card--top { top: 45px; right: -5px; }
.mh-float-card--bottom { left: -15px; bottom: 45px; }
.mh-trust-strip { position: relative; z-index: 2; background: #fff; border-top: 1px solid rgba(220,231,234,.7); border-bottom: 1px solid var(--mh-line); }
.mh-trust-grid { min-height: 100px; display: grid; grid-template-columns: repeat(4, 1fr); }
.mh-trust-grid > div { padding: 22px clamp(14px, 2vw, 28px); display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--mh-line); }
.mh-trust-grid > div:first-child { padding-left: 0; }
.mh-trust-grid > div:last-child { padding-right: 0; border: 0; }
.mh-trust-grid i { color: var(--mh-teal-dark); font-size: 23px; }
.mh-trust-grid span { display: flex; flex-direction: column; line-height: 1.35; }
.mh-trust-grid strong { font-size: 13px; }
.mh-trust-grid small { color: var(--mh-ink-soft); font-size: 10.5px; }
.mh-section { padding: 72px 0; }
.mh-section-head { margin-bottom: 28px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.mh-section-head h2, .mh-cta h2 { margin: 4px 0 0; color: var(--mh-deep); font-size: clamp(28px, 3vw, 39px); font-weight: 820; letter-spacing: -.035em; }
.mh-section-head > a { color: var(--mh-teal-dark); font-size: 13px; font-weight: 800; }
.mh-category-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.mh-category-card { position: relative; min-height: 170px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--mh-deep); background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius); box-shadow: 0 1px 0 rgba(7,41,56,.02); }
.mh-category-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -55px; bottom: -55px; background: var(--mh-mint); border-radius: 50%; transition: transform .3s ease; }
.mh-category-card:hover { color: var(--mh-deep); border-color: rgba(11,168,160,.35); box-shadow: var(--mh-shadow-sm); transform: translateY(-5px); }
.mh-category-card:hover::after { transform: scale(1.35); }
.mh-category-card__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--mh-teal-dark); background: var(--mh-mint); border-radius: 14px; font-size: 20px; }
.mh-category-card strong { position: relative; z-index: 1; font-size: 14px; line-height: 1.3; }
.mh-category-card__arrow { position: absolute; z-index: 1; right: 17px; top: 17px; color: #99aab0; font-size: 11px; }
.mh-products-section { padding-top: 30px; background: #fff; }
.mh-products-section #content { padding-bottom: 0; }
.mh-products-section #content > h3 { margin: 0 0 26px; color: var(--mh-deep); font-size: clamp(28px, 3vw, 39px); font-weight: 820; letter-spacing: -.035em; }
.mh-products-section #content > h3::before { content: "Обране для вас"; display: block; color: var(--mh-teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mh-home-catalog-action { margin-top: 22px; display: flex; justify-content: center; }
.mh-cta { padding-top: 30px; }
.mh-cta__inner { padding: clamp(32px, 5vw, 58px); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; background: linear-gradient(125deg, var(--mh-deep), #0b5d68); border-radius: var(--mh-radius-lg); box-shadow: var(--mh-shadow); }
.mh-cta .mh-kicker { color: #70ded6; }
.mh-cta h2 { color: #fff; }
.mh-cta p { margin: 8px 0 0; color: #c8e1e5; }

/* Product cards */
.mh-product-card { height: 100%; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius); box-shadow: 0 4px 14px rgba(7,41,56,.035); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.mh-product-card:hover { border-color: rgba(11,168,160,.35); box-shadow: var(--mh-shadow-sm); transform: translateY(-5px); }
.mh-product-card__image { position: relative; min-height: 255px; padding: 24px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #fbfcfc, #f3f7f8); }
.mh-product-card__image > a { width: 100%; height: 225px; display: grid; place-items: center; }
.mh-product-card__image img { max-width: 100%; max-height: 225px; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.mh-product-card:hover .mh-product-card__image img { transform: scale(1.035); }
.mh-badge { position: absolute; z-index: 2; left: 14px; top: 14px; padding: 5px 9px; border-radius: 999px; font-size: 11px; font-weight: 850; }
.mh-badge--sale { color: #fff; background: var(--mh-coral); }
.mh-stock-dot { position: absolute; z-index: 2; left: 14px; bottom: 12px; padding: 5px 8px; display: inline-flex; align-items: center; gap: 6px; color: var(--mh-success); background: rgba(255,255,255,.92); border-radius: 999px; font-size: 10px; font-weight: 750; }
.mh-stock-dot i { width: 6px; height: 6px; display: block; background: #28b97b; border-radius: 50%; box-shadow: 0 0 0 3px rgba(40,185,123,.14); }
.mh-stock-dot.is-out { color: #8a6a37; }
.mh-stock-dot.is-out i { background: #d69b3f; box-shadow: 0 0 0 3px rgba(214,155,63,.15); }
.mh-card-quick-actions { position: absolute; z-index: 3; right: 13px; top: 13px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(8px); transition: opacity .2s ease, transform .2s ease; }
.mh-product-card:hover .mh-card-quick-actions { opacity: 1; transform: none; }
.mh-card-quick-actions button { width: 36px; height: 36px; color: var(--mh-deep); background: rgba(255,255,255,.95); border: 1px solid var(--mh-line); border-radius: 11px; box-shadow: 0 4px 12px rgba(7,41,56,.08); }
.mh-card-quick-actions button:hover { color: #fff; background: var(--mh-teal-dark); border-color: var(--mh-teal-dark); }
.mh-product-card__content { padding: 17px 18px 18px; display: flex; flex: 1; flex-direction: column; }
.mh-product-card .description { display: flex; flex: 1; flex-direction: column; }
.mh-product-card h4 { min-height: 48px; margin: 0 0 7px; font-size: 15px; font-weight: 760; line-height: 1.42; }
.mh-product-card h4 a { color: var(--mh-ink); }
.mh-product-card h4 a:hover { color: var(--mh-teal-dark); }
.mh-product-card .description > p { margin: 0; display: -webkit-box; overflow: hidden; color: var(--mh-ink-soft); font-size: 11.5px; line-height: 1.55; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.mh-rating { margin-top: 8px; color: #e8a735; font-size: 11px; }
.mh-product-card__buy { margin-top: 15px; padding-top: 13px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; border-top: 1px solid #edf2f3; }
.mh-product-card .price { display: flex; flex-direction: column; line-height: 1.2; }
.mh-product-card .price-new { color: var(--mh-deep); font-size: 18px; font-weight: 850; }
.mh-product-card .price-old { color: #96a8af; font-size: 11px; text-decoration: line-through; }
.mh-add-cart { height: 40px; padding: 0 13px; display: inline-flex; align-items: center; gap: 7px; color: #fff; background: var(--mh-deep); border: 0; border-radius: 11px; font-size: 12px; font-weight: 800; }
.mh-add-cart:hover { background: var(--mh-teal-dark); }

/* Core pages */
.mh-main > .container, .mh-main > [id^="product-"] > .container { padding-top: 26px; padding-bottom: 65px; }
#product-category.container, #product-info.container, #product-search.container, #product-special.container, #checkout-cart.container, #checkout-checkout.container, [id^="account-"][class~="container"], [id^="information-"][class~="container"] { padding-top: 26px; padding-bottom: 70px; }
.breadcrumb { margin: 0 0 23px; padding: 0; gap: 4px; background: transparent; font-size: 12px; }
.breadcrumb-item + .breadcrumb-item::before { color: #a4b3b9; content: "›"; }
.breadcrumb a { color: #70868f; }
#content > h1, #shopping-cart h1 { margin: 0 0 25px; color: var(--mh-deep); font-size: clamp(28px, 3vw, 42px); font-weight: 820; letter-spacing: -.035em; }
.form-control, .form-select { min-height: 46px; color: var(--mh-ink); border-color: var(--mh-line); border-radius: 11px; }
.form-control:focus, .form-select:focus { border-color: rgba(11,168,160,.65); box-shadow: 0 0 0 4px rgba(11,168,160,.1); }
.input-group-text { color: var(--mh-ink-soft); background: #f3f7f8; border-color: var(--mh-line); }
.card, .accordion-item { border-color: var(--mh-line); border-radius: var(--mh-radius); box-shadow: 0 4px 16px rgba(7,41,56,.04); }
.card-header, .accordion-button { color: var(--mh-deep); background: #f8fafb; border-color: var(--mh-line); font-weight: 750; }
.table { --bs-table-border-color: var(--mh-line); }
.table > thead { color: var(--mh-deep); background: #f3f7f8; }
.table-bordered { overflow: hidden; border-radius: var(--mh-radius-sm); }
.pagination { gap: 5px; }
.page-link { color: var(--mh-deep); border-color: var(--mh-line); border-radius: 9px !important; }
.active > .page-link { background: var(--mh-teal-dark); border-color: var(--mh-teal-dark); }
.nav-tabs { gap: 6px; border-color: var(--mh-line); }
.nav-tabs .nav-link { color: var(--mh-ink-soft); border-radius: 12px 12px 0 0; font-weight: 750; }
.nav-tabs .nav-link.active { color: var(--mh-teal-dark); border-color: var(--mh-line) var(--mh-line) #fff; }
.tab-content { padding: 25px 4px; color: #405d68; }
#product-list { row-gap: 14px; }
#product-category.mh-catalog-page { max-width: 1380px; }
.mh-catalog-layout { display: grid; grid-template-columns: minmax(230px, 290px) minmax(0, 1fr); align-items: start; gap: 24px; }
.mh-catalog-layout > #column-left, .mh-catalog-layout > #content { width: auto; max-width: none; padding-right: 0; padding-left: 0; }
.mh-catalog-page #content { min-width: 0; }
.mh-catalog-hero { margin-bottom: 24px; padding: clamp(24px, 4vw, 42px); display: flex; align-items: center; justify-content: space-between; gap: 28px; overflow: hidden; background: linear-gradient(125deg, #fff, #eefafa); border: 1px solid var(--mh-line); border-radius: var(--mh-radius-lg); }
.mh-catalog-hero h1 { margin: 4px 0 0; color: var(--mh-deep); font-size: clamp(30px, 4vw, 48px); font-weight: 840; letter-spacing: -.04em; line-height: 1.08; }
.mh-catalog-description { max-width: 760px; margin-top: 12px; color: var(--mh-ink-soft); }
.mh-catalog-description p:last-child { margin-bottom: 0; }
.mh-catalog-hero__image { width: 150px; height: 120px; padding: 10px; flex: 0 0 auto; object-fit: contain; mix-blend-mode: multiply; }
.mh-subcategories { margin-bottom: 26px; padding: 22px; background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius); }
.mh-subcategories h2 { margin: 0 0 14px; color: var(--mh-deep); font-size: 20px; font-weight: 800; }
.mh-subcategories__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.mh-subcategories__grid a { min-height: 54px; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--mh-deep); background: var(--mh-bg); border: 1px solid transparent; border-radius: 12px; font-size: 13px; font-weight: 760; }
.mh-subcategories__grid a:hover { color: var(--mh-teal-dark); background: var(--mh-mint); border-color: rgba(11,168,160,.28); transform: translateY(-2px); }
.mh-subcategories__grid i { color: var(--mh-teal-dark); font-size: 11px; }
.mh-catalog-toolbar { margin-bottom: 18px; padding: 13px; display: grid; grid-template-columns: auto auto minmax(280px, 1fr) 190px; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius); }
.mh-catalog-toolbar .input-group { margin: 0; }
.mh-view-switch { gap: 5px; }
.mh-view-switch .btn { width: 44px; padding-inline: 0; }
.mh-catalog-pagination { padding-top: 10px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; color: var(--mh-ink-soft); font-size: 12px; }
.mh-empty-state { padding: 70px 20px; display: grid; justify-items: center; gap: 12px; color: var(--mh-ink-soft); background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius-lg); text-align: center; }
.mh-empty-state i { color: var(--mh-teal); font-size: 42px; }
#product-category #content > h3 + .row ul { margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
#product-category #content > h3 + .row li a { padding: 10px 14px; display: inline-flex; color: var(--mh-deep); background: #fff; border: 1px solid var(--mh-line); border-radius: 11px; font-size: 13px; font-weight: 700; }
#product-category #content > h3 + .row li a:hover { color: var(--mh-teal-dark); border-color: rgba(11,168,160,.4); background: var(--mh-mint); }
#product-category .row:has(#input-sort), #product-search .row:has(#input-sort), #product-special .row:has(#input-sort) { padding: 14px; align-items: center; background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius); }
#column-left > div, #column-right > div { overflow: hidden; border: 1px solid var(--mh-line); border-radius: var(--mh-radius); background: #fff; }
.list-group-item { border-color: var(--mh-line); }
.list-group-item.active { background: var(--mh-teal-dark); border-color: var(--mh-teal-dark); }

/* Product detail */
#product-info #content > .row.mb-3 { padding: clamp(18px, 3vw, 38px); background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius-lg); box-shadow: var(--mh-shadow-sm); }
#product-info .image > a > img { width: 100%; max-height: 520px; padding: 25px; object-fit: contain; background: #f8fafb; border: 0; border-radius: 22px; }
#product-info .image > div { display: flex; flex-wrap: wrap; gap: 8px; }
#product-info .image > div img { width: 76px; height: 76px; object-fit: contain; border-color: var(--mh-line); border-radius: 11px; }
#product-info h1 { margin: 5px 0 18px; color: var(--mh-deep); font-size: clamp(27px, 3vw, 42px); font-weight: 820; line-height: 1.16; letter-spacing: -.035em; }
#product-info .list-unstyled { color: var(--mh-ink-soft); font-size: 13px; }
#product-info .list-unstyled a { color: var(--mh-teal-dark); font-weight: 700; }
#product-info h2 .price-new, #product-info h2 { color: var(--mh-deep); font-size: 32px; font-weight: 850; }
#product-info .price-old { color: #98a8ae; font-size: 16px; text-decoration: line-through; }
#product-info #product { margin-top: 20px; padding: 20px; background: #f5f9f9; border: 1px solid var(--mh-line); border-radius: 18px; }
#product-info #button-cart { min-width: 190px; background: var(--mh-teal-dark); border-color: var(--mh-teal-dark); }
#product-info #button-cart:hover { background: var(--mh-deep); }
#product-info .mh-product-main { align-items: stretch; }
#product-info .mh-product-summary { display: flex; flex-direction: column; }
#product-info .mh-product-summary > #product { margin-top: auto; }
.mh-product-assurance { margin-top: 15px; display: grid; gap: 9px; }
.mh-product-assurance > div { padding: 12px 13px; display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--mh-line); border-radius: 13px; }
.mh-product-assurance i { width: 35px; height: 35px; display: grid; place-items:center; flex:0 0 35px; color:var(--mh-teal-dark); background:var(--mh-mint); border-radius:10px; }
.mh-product-assurance span { min-width:0; display:flex; flex-direction:column; line-height:1.35; }
.mh-product-assurance strong { color:var(--mh-deep); font-size:12px; }
.mh-product-assurance small { color:var(--mh-ink-soft); font-size:10px; }
.mh-rich-description { display:grid; gap:22px; }
.mh-rich-description__intro h2 { margin:5px 0 0; color:var(--mh-deep); font-size:clamp(22px,2.2vw,31px); }
.mh-rich-description__lead { max-width:940px; margin:0; color:var(--mh-ink-soft); font-size:15px; line-height:1.8; }
.mh-rich-description__features { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.mh-rich-description__features > div { min-height:58px; padding:14px; display:flex; align-items:center; gap:10px; color:var(--mh-deep); font-weight:700; background:var(--mh-surface); border:1px solid var(--mh-line); border-radius:14px; }
.mh-rich-description__features i { color:var(--mh-teal); font-size:17px; }
.mh-rich-description__specs { margin:0; padding:18px; display:grid; grid-template-columns:minmax(120px,.35fr) 1fr; gap:0; background:#fff; border:1px solid var(--mh-line); border-radius:16px; }
.mh-rich-description__specs dt,.mh-rich-description__specs dd { margin:0; padding:9px 11px; border-bottom:1px solid #edf2f3; }
.mh-rich-description__specs dt { color:var(--mh-ink-soft); font-weight:600; }
.mh-rich-description__specs dd { color:var(--mh-deep); font-weight:700; }
.mh-rich-description__specs dt:last-of-type,.mh-rich-description__specs dd:last-of-type { border-bottom:0; }
.mh-rich-description__notice { padding:14px 16px; display:flex; gap:11px; align-items:flex-start; color:#704e08; background:#fff8df; border:1px solid #f5df96; border-radius:14px; line-height:1.55; }
.mh-rich-description__notice i { margin-top:3px; color:#d49a0a; }
#product-info .nav-tabs { margin-top:22px; padding:0 18px; background:#fff; border:1px solid var(--mh-line); border-radius:16px 16px 0 0; }
#product-info .tab-content { padding:28px; background:#fff; border:1px solid var(--mh-line); border-top:0; border-radius:0 0 18px 18px; font-size:14px; line-height:1.8; }

/* Cart and checkout */
#checkout-cart #shopping-cart, #checkout-checkout #content { padding: clamp(18px, 3vw, 32px); background: #fff; border: 1px solid var(--mh-line); border-radius: var(--mh-radius-lg); box-shadow: var(--mh-shadow-sm); }
#checkout-cart .table img { width: 84px; height: 84px; object-fit: contain; border: 0; border-radius: 12px; background: #f6f9fa; }
#checkout-cart .table td { vertical-align: middle; }
#checkout-cart .table td a { color: var(--mh-deep); font-weight: 700; }
#checkout-total tr:last-child { color: var(--mh-deep); font-size: 17px; }
#checkout-checkout .card { margin-bottom: 15px; box-shadow: none; }
#checkout-confirm .table-responsive { border-radius: var(--mh-radius-sm); }
#checkout-checkout fieldset > legend { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mh-checkout-step { padding: 4px 9px; color: var(--mh-teal-dark); background: var(--mh-mint); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
#checkout-shipping-method .input-group, #checkout-payment-method .input-group { overflow: hidden; border: 1px solid var(--mh-line); border-radius: 12px; }
#checkout-shipping-method .input-group > *, #checkout-payment-method .input-group > * { border: 0; border-radius: 0; }
#checkout-shipping-method .invalid-feedback, #checkout-payment-method .invalid-feedback { margin-top: 7px; }
.mh-option-modal .modal-dialog { max-width:680px; }
.mh-option-modal .modal-content { overflow:hidden; border:0; border-radius:22px; box-shadow:var(--mh-shadow); }
.mh-option-modal .modal-header { padding:20px 22px; border-color:var(--mh-line); }
.mh-option-modal .modal-body { padding:22px; }
.mh-option-modal .modal-body form { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.mh-option-modal .modal-body form > p:first-child { grid-column:1 / -1; margin:0 0 4px; color:var(--mh-ink-soft); }
.mh-option-group-title { display:none; }
.mh-provider-option { position:relative; min-height:102px; margin:0; padding:0; }
.mh-provider-option input { position:absolute; z-index:2; top:14px; right:14px; margin:0; }
.mh-provider-option label { height:100%; padding:15px; display:flex; align-items:center; gap:13px; cursor:pointer; background:#fff; border:1px solid var(--mh-line); border-radius:16px; transition:.2s ease; }
.mh-provider-option label:hover { border-color:rgba(11,168,160,.45); transform:translateY(-2px); box-shadow:var(--mh-shadow-sm); }
.mh-provider-option input:checked + label { border-color:var(--mh-teal); background:#f1fbfa; box-shadow:0 0 0 3px rgba(11,168,160,.10); }
.mh-provider-option__brand { min-width:76px; min-height:42px; padding:8px 10px; display:flex; align-items:center; justify-content:center; gap:7px; color:var(--mh-deep); background:var(--mh-bg); border-radius:11px; font-size:13px; font-weight:900; letter-spacing:-.02em; }
.mh-provider-option__brand .fa-brands { font-size:22px; }
.mh-provider-option__copy { min-width:0; padding-right:16px; display:flex; flex-direction:column; line-height:1.35; }
.mh-provider-option__copy strong { color:var(--mh-deep); font-size:12px; }
.mh-provider-option__copy small { margin-top:4px; color:var(--mh-ink-soft); font-size:10px; }
.mh-provider-option.is-nova .mh-provider-option__brand { color:#fff; background:#ed1c24; }
.mh-provider-option.is-ukr .mh-provider-option__brand { color:#183b8f; background:#ffd500; }
.mh-provider-option.is-meest .mh-provider-option__brand { color:#fff; background:linear-gradient(135deg,#1856a2 0 63%,#ef3340 63%); }
.mh-provider-option.is-mono .mh-provider-option__brand { color:#fff; background:#111; }
.mh-provider-option.is-liqpay .mh-provider-option__brand { color:#fff; background:#70b62c; }
.mh-provider-option.is-cod .mh-provider-option__brand { color:#7b5712; background:#fff3c9; }
.mh-provider-option.is-iban .mh-provider-option__brand { color:#2157a5; background:#eaf1ff; }
.mh-option-modal form > .text-end { grid-column:1 / -1; margin-top:4px; }

/* Footer */
.mh-promo-section { padding-top: 16px; padding-bottom: 32px; }
.mh-promo-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.mh-promo-card { min-height:170px; padding:22px; display:grid; grid-template-columns:auto 1fr auto; align-items:start; gap:15px; color:var(--mh-deep); background:#fff; border:1px solid var(--mh-line); border-radius:20px; box-shadow:var(--mh-shadow-sm); text-align:left; transition:.2s ease; }
button.mh-promo-card { width:100%; font:inherit; }
.mh-promo-card:hover { color:var(--mh-deep); transform:translateY(-4px); border-color:rgba(11,168,160,.35); box-shadow:var(--mh-shadow); }
.mh-promo-card > span { width:46px; height:46px; display:grid; place-items:center; color:#fff; background:var(--mh-teal-dark); border-radius:14px; font-size:18px; }
.mh-promo-card > div { min-width:0; display:flex; flex-direction:column; }
.mh-promo-card small { color:var(--mh-teal-dark); font-size:10px; font-weight:850; letter-spacing:.05em; text-transform:uppercase; }
.mh-promo-card strong { margin-top:5px; font-size:18px; line-height:1.2; }
.mh-promo-card p { margin:8px 0 0; color:var(--mh-ink-soft); font-size:12px; line-height:1.55; }
.mh-promo-card > i { margin-top:13px; color:var(--mh-teal); }
.mh-promo-card--sale > span { background:#d84955; }
.mh-promo-card--bulk > span { background:#176d8a; }
.mh-promo-card--email { border:0; background:linear-gradient(145deg,#e9f9f7,#f4fbff); }

#product-category #column-left { align-self:flex-start; }
#product-category #column-left .card { margin-bottom:14px; overflow:hidden; border:1px solid var(--mh-line); border-radius:16px; box-shadow:var(--mh-shadow-sm); }
#product-category #column-left .card-header { padding:15px 16px; color:var(--mh-deep); background:#f3f9f9; border-color:var(--mh-line); font-size:13px; font-weight:850; }
#product-category #column-left .list-group-item { padding:11px 15px; border-color:#edf2f3; font-size:12px; }
#product-category #column-left a.list-group-item { color:var(--mh-deep); background:#fbfdfd; font-weight:800; pointer-events:none; }
#product-category #column-left .form-check { margin:5px 0; }
#product-category #column-left .form-check-label { color:var(--mh-ink-soft); cursor:pointer; font-size:11.5px; }
#product-category #column-left .form-check-input:checked { background-color:var(--mh-teal-dark); border-color:var(--mh-teal-dark); }
#product-category #column-left .card-footer { padding:12px 15px; background:#fff; border-color:var(--mh-line); }
#product-category #column-left #button-filter { width:100%; background:var(--mh-teal-dark); border-color:var(--mh-teal-dark); }
@media (min-width: 992px) { #product-category #column-left { position:sticky; top:118px; } }

.mh-footer { position: static; width: 100%; padding: 70px 0 24px; color: #c3d7dc; background: var(--mh-deeper); }
.mh-footer__top { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: clamp(30px, 5vw, 70px); }
.mh-brand--footer { color: #fff; }
.mh-brand--footer:hover { color: #fff; }
.mh-brand--footer .mh-brand__logo { width:72px; height:72px; flex-basis:72px; padding:4px; background:#f7fbfb; border-radius:50%; }
.mh-brand--footer .mh-brand__mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
.mh-brand--footer .mh-brand__copy strong, .mh-brand--footer .mh-brand__copy b { font-size: 21px; }
.mh-footer__brand > p { max-width: 380px; margin: 20px 0; color: #9fbbc2; font-size: 13px; }
.mh-footer h5 { margin: 5px 0 19px; color: #fff; font-size: 14px; font-weight: 800; }
.mh-footer ul { margin: 0; padding: 0; list-style: none; }
.mh-footer li { margin: 9px 0; }
.mh-footer li a { color: #a9c0c6; font-size: 12.5px; }
.mh-footer li a:hover { color: #72ded6; }
.mh-footer__contacts { display: grid; gap: 9px; }
.mh-footer__contacts a, .mh-footer__contacts span { display: flex; align-items: center; gap: 10px; color: #c3d7dc; font-size: 12px; }
.mh-footer__contacts i { width: 16px; color: #65d6cf; }
.mh-footer__bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #7899a1; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.mh-footer__bottom > div { display: flex; gap: 17px; }
.mh-footer__bottom > div span { font-weight: 700; }
.mh-mobile-nav { display: none; }

/* Email welcome offer */
body.mh-newsletter-open { overflow:hidden; }
.mh-newsletter { position:fixed; z-index:2200; inset:0; display:grid; place-items:center; padding:20px; opacity:0; pointer-events:none; transition:opacity .22s ease; }
.mh-newsletter.is-open { opacity:1; pointer-events:auto; }
.mh-newsletter__backdrop { position:absolute; inset:0; width:100%; height:100%; background:rgba(4,27,37,.66); border:0; backdrop-filter:blur(6px); }
.mh-newsletter__dialog { position:relative; width:min(760px,100%); min-height:410px; display:grid; grid-template-columns:.78fr 1.22fr; overflow:hidden; background:#fff; border-radius:28px; box-shadow:0 30px 90px rgba(4,27,37,.35); transform:translateY(20px) scale(.98); transition:transform .22s ease; }
.mh-newsletter.is-open .mh-newsletter__dialog { transform:none; }
.mh-newsletter__close { position:absolute; z-index:2; top:16px; right:16px; width:38px; height:38px; display:grid; place-items:center; color:var(--mh-deep); background:rgba(255,255,255,.88); border:1px solid rgba(7,58,73,.1); border-radius:50%; }
.mh-newsletter__visual { padding:42px 28px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; background:radial-gradient(circle at 30% 20%,#2fd1c6,transparent 30%),linear-gradient(145deg,#0ba8a0,#073a49 76%); text-align:center; }
.mh-newsletter__visual > span { width:82px; height:82px; display:grid; place-items:center; margin-bottom:22px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.25); border-radius:24px; font-size:34px; transform:rotate(-6deg); }
.mh-newsletter__visual strong { font-size:68px; line-height:1; letter-spacing:-.06em; }
.mh-newsletter__visual small { margin-top:8px; color:#c9f3f0; font-size:13px; font-weight:750; }
.mh-newsletter__content { padding:58px 48px 42px; display:flex; flex-direction:column; justify-content:center; }
.mh-newsletter__content h2 { margin:7px 0 12px; color:var(--mh-deep); font-size:clamp(28px,4vw,40px); letter-spacing:-.04em; }
.mh-newsletter__content > p { margin:0 0 22px; color:var(--mh-ink-soft); font-size:14px; line-height:1.65; }
.mh-newsletter__form label { margin-bottom:7px; color:var(--mh-deep); font-size:11px; font-weight:800; }
.mh-newsletter__form > div { display:grid; grid-template-columns:1fr auto; overflow:hidden; border:1px solid var(--mh-line); border-radius:13px; }
.mh-newsletter__form input { min-width:0; height:52px; padding:0 15px; border:0; outline:0; }
.mh-newsletter__form button { padding:0 18px; color:#fff; background:var(--mh-teal-dark); border:0; font-size:12px; font-weight:800; }
.mh-newsletter__form > small { display:block; margin-top:9px; color:#8a9ba0; font-size:9.5px; line-height:1.5; }
.mh-newsletter__form > small a { color:var(--mh-teal-dark); text-decoration:underline; }
.mh-newsletter__result { padding:16px; display:flex; flex-direction:column; gap:8px; border-radius:14px; }
.mh-newsletter__result.is-success { color:#175b40; background:#eaf9f0; border:1px solid #b9e8ca; }
.mh-newsletter__result.is-error { color:#9d2531; background:#fff0f1; border:1px solid #f0c3c7; }
.mh-newsletter__result button { align-self:flex-start; padding:9px 12px; color:#fff; background:#175b40; border:0; border-radius:9px; font-family:ui-monospace,monospace; font-weight:900; letter-spacing:.06em; }
.mh-newsletter__result small { opacity:.75; }

/* Nova Poshta address selector */
.mh-np-selector { position: relative; width: 100%; flex: 0 0 100%; grid-column: 1 / -1; margin: 0 0 18px; padding: 20px; background: linear-gradient(145deg, #f2fbfa, #f7fbfc); border: 1px solid rgba(11,168,160,.24); border-radius: 17px; }
.mh-np-selector__head { margin-bottom: 15px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.mh-np-selector__title { display: flex; align-items: center; gap: 10px; color: var(--mh-deep); font-size: 16px; font-weight: 820; }
.mh-np-selector__title i { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: #ed1c24; border-radius: 10px; }
.mh-np-selector.is-ukrposhta .mh-np-selector__title i { color:#183b8f; background:#ffd500; }
.mh-np-selector.is-meest .mh-np-selector__title i { background:#1856a2; }
.mh-np-selector.is-pickup .mh-np-selector__title i { background:var(--mh-teal-dark); }
.mh-np-selector.is-pickup .mh-np-selector__grid { display:none; }
.mh-np-selector__hint { margin: 4px 0 0 44px; color: var(--mh-ink-soft); font-size: 12px; }
.mh-np-selector__manual { padding: 4px 0; color: var(--mh-teal-dark); background: none; border: 0; font-size: 12px; font-weight: 750; white-space: nowrap; }
.mh-np-selector__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.mh-np-field { position: relative; }
.mh-np-field label { margin-bottom: 6px; color: var(--mh-deep); font-size: 12px; font-weight: 750; }
.mh-np-results { position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 5px); max-height: 260px; margin: 0; padding: 6px; display: none; overflow-y: auto; background: #fff; border: 1px solid var(--mh-line); border-radius: 12px; box-shadow: var(--mh-shadow); list-style: none; }
.mh-np-results.is-open { display: block; }
.mh-np-results button { width: 100%; padding: 10px 11px; color: var(--mh-ink); background: transparent; border: 0; border-radius: 8px; text-align: left; font-size: 12px; line-height: 1.35; }
.mh-np-results button:hover, .mh-np-results button:focus { color: var(--mh-deep); background: var(--mh-mint); }
.mh-np-status { min-height: 18px; margin-top: 9px; color: var(--mh-ink-soft); font-size: 11px; }
.mh-np-status.is-error { color: #c33b46; }
.mh-np-native-field { display: none !important; }
.mh-np-manual .mh-np-selector__grid, .mh-np-manual .mh-np-status { display: none; }
.mh-np-manual .mh-np-native-field { display: block !important; }

@media (max-width: 767.98px) {
  .mh-catalog-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .mh-np-selector { padding: 16px; }
  .mh-np-selector__head { flex-direction: column; }
  .mh-np-selector__hint { margin-left: 0; }
  .mh-np-selector__grid { grid-template-columns: 1fr; }
  .mh-option-modal .modal-body form { grid-template-columns:1fr; }
  .mh-rich-description__features { grid-template-columns:1fr; }
  .mh-rich-description__specs { grid-template-columns:1fr; }
  .mh-rich-description__specs dt { padding-bottom:2px; border-bottom:0; }
  .mh-rich-description__specs dd { padding-top:2px; }
}

@media (max-width: 1199.98px) {
  .mh-header__inner { grid-template-columns: 205px minmax(260px, 1fr) auto; gap: 20px; }
  .mh-brand__copy small { display: none; }
  .mh-category-nav > li > a { padding: 0 10px; font-size: 11.5px; }
  .mh-category-cards { grid-template-columns: repeat(3, 1fr); }
  .mh-hero__grid { gap: 45px; }
  .mh-float-card--top { right: 0; }
  .mh-float-card--bottom { left: 0; }
}

@media (max-width: 991.98px) {
  body { padding-bottom: 66px; }
  .mh-utility__promise span { display: none; }
  .mh-utility__links > a:first-child { display: none; }
  .mh-header__inner { min-height: 75px; grid-template-columns: auto 1fr auto; gap: 13px; }
  .mh-mobile-toggle { display: grid; place-items: center; }
  .mh-brand__mark { width: 39px; height: 39px; flex-basis: 39px; border-radius: 12px; }
  .mh-brand__logo { width:46px; height:46px; flex-basis:46px; }
  .mh-brand__copy strong, .mh-brand__copy b { font-size: 20px; }
  .mh-header__search { grid-column: 1 / -1; padding-bottom: 13px; }
  .mh-header__actions { grid-column: 3; grid-row: 1; justify-self: end; }
  .mh-header__search { grid-row: 2; }
  .mh-header__cart { min-width: 52px; }
  .mh-cart-button { width: 52px; padding: 7px; }
  .mh-cart-button__text { display: none; }
  .mh-category-bar { border: 0; }
  #navbar-menu { position: absolute; z-index: 1000; top: 100%; left: 12px; right: 12px; padding: 10px; background: #fff; border: 1px solid var(--mh-line); border-radius: 18px; box-shadow: var(--mh-shadow); }
  .mh-category-nav { max-height: calc(100vh - 180px); display: block; overflow-y: auto; }
  .mh-category-nav > li, .mh-category-nav > li > a { width: 100%; min-height: 44px; }
  .mh-category-nav__all > a { border-radius: 11px; }
  .mh-mega-menu { position: static !important; width: 100%; min-width: 0; transform: none !important; border-radius: 12px; box-shadow: none; }
  .mh-hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .mh-hero__content { padding: 55px 0 20px; text-align: center; }
  .mh-hero__content > p { margin-inline: auto; }
  .mh-hero__actions, .mh-hero__meta { justify-content: center; }
  .mh-hero__visual { min-height: 390px; margin-bottom: 30px; }
  .mh-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mh-trust-grid > div { border-bottom: 1px solid var(--mh-line); }
  .mh-trust-grid > div:nth-child(2) { border-right: 0; }
  .mh-trust-grid > div:nth-child(3), .mh-trust-grid > div:nth-child(4) { border-bottom: 0; }
  .mh-footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .mh-footer__top > div:last-child { display: none; }
  .mh-catalog-toolbar { grid-template-columns: auto 1fr 160px; }
  .mh-promo-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .mh-promo-card--email { grid-column:1 / -1; }
  .mh-mobile-nav { position: fixed; z-index: 999; left: 0; right: 0; bottom: 0; height: 66px; padding-bottom: env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.96); border-top: 1px solid var(--mh-line); box-shadow: 0 -8px 30px rgba(7,41,56,.08); backdrop-filter: blur(15px); }
  .mh-mobile-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--mh-ink-soft); font-size: 10px; }
  .mh-mobile-nav i { color: var(--mh-deep); font-size: 18px; }
}

@media (max-width: 767.98px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .mh-utility__inner { min-height: 31px; justify-content: center; }
  .mh-utility__promise { display: none; }
  .mh-utility__links { margin-left: 0; gap: 10px; }
  .mh-utility__links > a { font-size: 11px; }
  .mh-utility__locale { display: none; }
  .mh-header__inner { grid-template-columns: 42px 1fr 52px; }
  .mh-brand { justify-self: center; }
  .mh-brand__copy small { display: none; }
  .mh-search { height: 48px; }
  .mh-search button { padding: 0 15px; }
  .mh-search input { font-size: 13px; }
  .mh-search-suggest { position: fixed; left: 12px; right: 12px; top: 132px; max-height: calc(100vh - 150px); }
  .mh-search-suggest__item { grid-template-columns: 58px minmax(0,1fr); }
  .mh-search-suggest__item img { width: 58px; height: 58px; }
  .mh-search-suggest__price { grid-column: 2; align-items: flex-start; flex-direction: row; gap: 7px; }
  .mh-hero__content { padding-top: 42px; }
  .mh-hero h1 { font-size: clamp(35px, 11vw, 50px); }
  .mh-hero__content > p { font-size: 15px; }
  .mh-hero__actions { display: grid; }
  .mh-hero__actions .btn { justify-content: center; }
  .mh-hero__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .mh-hero__meta span { padding: 0 7px; }
  .mh-hero__meta strong { font-size: 16px; }
  .mh-hero__visual { min-height: 335px; }
  .mh-hero-card--main { padding: 28px; border-radius: 26px; }
  .mh-hero-card__icon { margin-bottom: 20px; }
  .mh-hero-card--main strong { font-size: 24px; }
  .mh-float-card--top { top: 20px; }
  .mh-float-card--bottom { bottom: 20px; }
  .mh-trust-grid { grid-template-columns: 1fr; }
  .mh-trust-grid > div, .mh-trust-grid > div:first-child, .mh-trust-grid > div:last-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--mh-line); }
  .mh-trust-grid > div:last-child { border-bottom: 0; }
  .mh-section { padding: 52px 0; }
  .mh-section-head { align-items: flex-start; }
  .mh-section-head > a { padding-top: 10px; font-size: 0; }
  .mh-section-head > a i { font-size: 16px; }
  .mh-category-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mh-category-card { min-height: 145px; padding: 17px; }
  .mh-products-section #product-list, .mh-products-section .row.row-cols-xl-4 { --bs-gutter-x: 10px; }
  .mh-product-card__image { min-height: 190px; padding: 15px; }
  .mh-product-card__image > a { height: 170px; }
  .mh-product-card__image img { max-height: 170px; }
  .mh-product-card__content { padding: 13px; }
  .mh-product-card h4 { min-height: 60px; font-size: 13px; }
  .mh-product-card .description > p, .mh-rating { display: none; }
  .mh-product-card__buy { align-items: center; }
  .mh-product-card .price-new { font-size: 15px; }
  .mh-add-cart { width: 38px; padding: 0; justify-content: center; }
  .mh-add-cart span { display: none; }
  .mh-card-quick-actions { opacity: 1; transform: none; }
  .mh-cta__inner { align-items: flex-start; flex-direction: column; }
  .mh-footer { padding-top: 50px; }
  .mh-footer__top { grid-template-columns: repeat(2, 1fr); gap: 35px 20px; }
  .mh-footer__brand { grid-column: 1 / -1; }
  .mh-footer__bottom { margin-top: 38px; flex-direction: column; }
  .mh-footer__bottom > div { flex-wrap: wrap; }
  #product-info #content > .row.mb-3, #checkout-cart #shopping-cart, #checkout-checkout #content { padding: 16px; border-radius: 20px; }
  #checkout-cart .table-responsive { overflow: visible; }
  #checkout-cart .table thead { display: none; }
  #checkout-cart .table tbody tr { padding: 13px 0; display: grid; grid-template-columns: 78px 1fr; gap: 8px 12px; border-bottom: 1px solid var(--mh-line); }
  #checkout-cart .table tbody td { padding: 4px; display: block; border: 0; text-align: left !important; }
  #checkout-cart .table tbody td:first-child { grid-row: 1 / 4; }
  #checkout-cart .table tbody td:nth-child(3) { max-width: 180px; }
  #checkout-cart .table tfoot td { font-size: 12px; }
  .mh-catalog-hero { padding: 22px; }
  .mh-catalog-hero__image { display: none; }
  .mh-subcategories { padding: 16px; }
  .mh-subcategories__grid { grid-template-columns: 1fr; }
  .mh-catalog-toolbar { grid-template-columns: 1fr; }
  .mh-catalog-toolbar > .btn { width: 100%; }
  .mh-limit-select { display: none; }
  .mh-catalog-pagination { flex-direction: column; }
  .mh-promo-grid { grid-template-columns:1fr; }
  .mh-promo-card--email { grid-column:auto; }
  .mh-promo-card { min-height:0; padding:18px; }
  .mh-newsletter__dialog { min-height:0; grid-template-columns:1fr; border-radius:22px; }
  .mh-newsletter__visual { padding:26px 24px 22px; }
  .mh-newsletter__visual > span { width:58px; height:58px; margin-bottom:12px; border-radius:18px; font-size:24px; }
  .mh-newsletter__visual strong { font-size:48px; }
  .mh-newsletter__content { padding:30px 24px 26px; }
  .mh-newsletter__content h2 { font-size:28px; }
  .mh-newsletter__form > div { grid-template-columns:1fr; overflow:visible; border:0; gap:9px; }
  .mh-newsletter__form input { border:1px solid var(--mh-line); border-radius:12px; }
  .mh-newsletter__form button { height:48px; border-radius:12px; }
}

@media (max-width: 420px) {
  .mh-brand__copy strong, .mh-brand__copy b { font-size: 18px; }
  .mh-brand__mark { width: 35px; height: 35px; flex-basis: 35px; }
  .mh-brand__logo { width:42px; height:42px; flex-basis:42px; }
  .mh-hero__visual { min-height: 310px; }
  .mh-float-card { padding: 9px 11px; }
  .mh-category-card strong { font-size: 12px; }
}

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