:root {
  --mh-graphite: #1f232b;
  --mh-ink: #242832;
  --mh-muted: #727987;
  --mh-soft: #eceff3;
  --mh-shell: #f6f7fa;
  --mh-card: rgba(255, 255, 255, 0.86);
  --mh-line: #dde1e8;
  --mh-line-strong: #cfd4de;
  --mh-lavender: #9088d8;
  --mh-lavender-soft: #efedff;
  --mh-olive: #879384;
  --mh-warm: #b49c8a;
  --mh-shadow: 0 28px 90px rgba(31, 35, 43, 0.11);
  --mh-soft-shadow: 0 18px 48px rgba(31, 35, 43, 0.075);
  --mh-body-font: Manrope, "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  --mh-heading-font: Manrope, "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  --mh-catalog-row-height: 78px;
  --mh-catalog-gap: 12px;
  --mh-card-row-span: 3;
  --mh-tall-card-row-span: 6;
  --mh-sticky-header-space: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 255, 255, 0.82), transparent 26%),
    linear-gradient(180deg, #e7eaf0 0%, #f7f8fa 46%, #eceff3 100%);
  color: var(--mh-ink);
  font-family: var(--mh-body-font);
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.mh-page {
  min-height: 100vh;
  padding: 20px;
}

.mh-hero,
.mh-accent-strip,
.mh-catalog-shell,
.mh-workflow {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.mh-hero {
  position: relative;
  min-height: 640px;
  overflow: visible;
  padding-top: 96px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(249, 250, 252, 0.98) 0%, rgba(249, 250, 252, 0.94) 43%, rgba(237, 240, 244, 0.62) 100%),
    radial-gradient(circle at 86% 22%, rgba(144, 136, 216, 0.16), transparent 30%),
    linear-gradient(135deg, #fbfcfe, #e8ebf1);
  box-shadow: var(--mh-shadow);
}

.mh-topbar {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(1500px, 100%);
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(249, 250, 252, 0.78);
  padding: 16px 24px;
  box-shadow: 0 10px 28px rgba(31, 35, 43, 0.045);
  transform: translateX(-50%);
  backdrop-filter: blur(22px) saturate(1.05);
  transition: min-height 0.2s ease, padding 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.has-mh-scrolled .mh-topbar {
  min-height: 66px;
  border-color: rgba(207, 212, 222, 0.74);
  border-bottom-color: rgba(206, 211, 221, 0.86);
  background: rgba(255, 255, 255, 0.9);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 14px 34px rgba(31, 35, 43, 0.105);
}

.mh-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.mh-brand-logo {
  display: block;
  width: auto;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
  transition: height 0.2s ease;
}

.has-mh-scrolled .mh-brand-logo {
  height: 48px;
}

.mh-nav-links,
.mh-top-actions,
.mh-hero-actions {
  display: flex;
  align-items: center;
}

.mh-nav-links {
  justify-content: center;
  gap: 36px;
  color: #303542;
  font-size: 14px;
  font-weight: 700;
}

.mh-nav-links a {
  position: relative;
  white-space: nowrap;
}

.mh-nav-links a::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #766dc2;
  content: "";
  transform: translateX(-50%);
  transition: width 220ms ease;
  pointer-events: none;
}

.mh-nav-links a:hover::after,
.mh-nav-links a:focus-visible::after,
.mh-nav-links a[aria-current="page"]::after {
  width: 100%;
}

.mh-top-actions {
  justify-content: flex-end;
  gap: 12px;
}

.mh-link,
.mh-selection-link,
.mh-hero-actions a,
.mh-filter-head button,
.mh-filter-option,
.mh-card-action {
  border: 1px solid var(--mh-line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--mh-ink);
  font-weight: 800;
}

.mh-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 18px;
  box-shadow: 0 12px 28px rgba(31, 35, 43, 0.07);
}

.mh-selection-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-color: rgba(144, 136, 216, 0.24);
  border-radius: 999px;
  background: rgba(239, 237, 255, 0.72);
  color: #6f66bd;
  padding: 9px 14px;
  box-shadow: 0 10px 24px rgba(144, 136, 216, 0.09);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .mh-nav-links a::after,
  .mh-brand-card-link,
  .mh-brand-card-media img,
  .mh-brand-card-cta,
  .mh-brand-card-cta span {
    transition: none;
  }

  .mh-brand-card-link:hover,
  .mh-brand-card-link:focus-visible,
  .mh-brand-card-link:hover .mh-brand-card-media img,
  .mh-brand-card-link:focus-visible .mh-brand-card-media img,
  .mh-brand-card-link:hover .mh-brand-card-cta span,
  .mh-brand-card-link:focus-visible .mh-brand-card-cta span {
    transform: none;
  }
}

.mh-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.86fr);
  gap: 18px;
  align-items: center;
  min-height: 536px;
  padding: 22px 34px 38px 44px;
}

.mh-hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.mh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin: 0;
  border: 1px solid rgba(144, 136, 216, 0.18);
  border-radius: 999px;
  background: rgba(239, 237, 255, 0.84);
  color: #7b73ca;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 860;
  text-transform: none;
}

.mh-kicker span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--mh-lavender);
}

.mh-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #171a22;
  font-family: var(--mh-heading-font);
  font-size: 42px;
  font-weight: 690;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.mh-lede {
  max-width: 680px;
  margin: -4px 0 0;
  color: #687080;
  font-size: 17px;
  line-height: 1.5;
}

.mh-search {
  position: relative;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 8px;
  width: min(660px, 100%);
  min-height: 64px;
  padding: 7px;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 4px rgba(247, 248, 251, 0.92),
    0 20px 48px rgba(31, 35, 43, 0.1);
}

.mh-search-suggestions {
  position: absolute;
  z-index: 120;
  top: calc(100% + 8px);
  right: 7px;
  left: 7px;
  display: grid;
  max-height: 320px;
  overflow: auto;
  border: 1px solid rgba(207, 212, 222, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(31, 35, 43, 0.14);
  padding: 6px;
  backdrop-filter: blur(18px);
}

.mh-search-suggestions[hidden] {
  display: none;
}

.mh-search-suggestion {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 10px 12px;
  color: var(--mh-ink);
  text-align: left;
}

.mh-search-suggestion:hover,
.mh-search-suggestion:focus-visible,
.mh-search-suggestion.is-active {
  background: rgba(239, 237, 255, 0.72);
  outline: 2px solid rgba(95, 86, 172, 0.42);
  outline-offset: -2px;
}

.mh-search-suggestion img,
.mh-suggestion-fallback {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f5;
  color: #7b73ca;
  font-size: 11px;
  font-weight: 900;
  object-fit: cover;
}

.mh-suggestion-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mh-card-brand {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(135, 147, 132, 0.22);
  border-radius: 999px;
  background: rgba(234, 239, 232, 0.86);
  color: #52604f;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.mh-suggestion-primary {
  display: -webkit-box;
  overflow: hidden;
  color: var(--mh-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mh-suggestion-brand {
  overflow: hidden;
  color: #737b8b;
  font-size: 11px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-suggestion-fallback[hidden] {
  display: none;
}

.mh-search-suggestion.is-muted {
  grid-template-columns: 1fr;
  color: #737b8b;
  font-weight: 760;
}

.mh-search label {
  position: relative;
  display: grid;
  min-width: 0;
}

.mh-search label::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 17px;
  height: 17px;
  border: 2px solid #7d8493;
  border-radius: 999px;
  content: "";
  transform: translateY(-58%);
}

.mh-search label::after {
  position: absolute;
  top: 35px;
  left: 32px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #7d8493;
  content: "";
  transform: rotate(45deg);
}

.mh-search > label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.mh-search input {
  width: 100%;
  min-height: 50px;
  border: 0;
  background: transparent;
  color: var(--mh-ink);
  padding: 0 18px 0 58px;
  outline: none;
  font-size: 15px;
}

.mh-search-submit {
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #a69fde, #7f78cd);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(116, 106, 199, 0.32);
}

.mh-hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.mh-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 48px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(31, 35, 43, 0.065);
}

.mh-hero-actions a.is-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #a69fde, #8179d1);
  color: #fff;
  box-shadow: 0 16px 34px rgba(116, 106, 199, 0.28);
}

.mh-hero-slider {
  position: relative;
  min-height: 500px;
  overflow: visible;
}

.mh-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.mh-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mh-hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background: #eef1f5;
  box-shadow: 0 26px 62px rgba(31, 35, 43, 0.12);
}

.mh-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 52%;
}

.mh-hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(249, 250, 252, 0.58) 0%, rgba(249, 250, 252, 0.18) 30%, rgba(249, 250, 252, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(31, 35, 43, 0.035));
}

.mh-moodboard-image img {
  object-position: 58% 50%;
}

.mh-moodboard-image::before {
  background:
    linear-gradient(90deg, rgba(249, 250, 252, 0.68) 0%, rgba(249, 250, 252, 0.2) 28%, rgba(249, 250, 252, 0) 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(31, 35, 43, 0.04));
}

.mh-hero-side-card {
  position: absolute;
  z-index: 3;
  right: 54px;
  top: 178px;
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(238px, calc(100% - 78px));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.77);
  padding: 20px;
  box-shadow: 0 24px 54px rgba(31, 35, 43, 0.13);
  backdrop-filter: blur(18px);
}

.mh-hero-side-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mh-lavender);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.mh-hero-side-card strong {
  color: #242833;
  font-size: 16px;
  line-height: 1.2;
}

.mh-hero-side-card p {
  margin: 0;
  color: #6d7482;
  font-size: 13px;
  line-height: 1.54;
}

.mh-hero-side-card a {
  color: #746cc5;
  font-size: 12px;
  font-weight: 900;
}

.mh-slider-controls {
  position: absolute;
  z-index: 5;
  right: auto;
  bottom: 18px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  transform: translateX(-50%);
}

.mh-slider-controls button {
  border: 0;
}

.mh-hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.mh-hero-dots button {
  width: 7px;
  height: 7px;
  min-height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 35, 43, 0.22);
  padding: 0;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.mh-hero-dots button.is-active {
  background: var(--mh-lavender);
  transform: scale(1.18);
}

.mh-accent-strip {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(790px, calc(100% - 120px));
  margin-top: -92px;
  margin-left: max(44px, calc((100% - 1500px) / 2 + 44px));
}

.mh-accent-strip article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  border: 1px solid rgba(207, 212, 222, 0.68);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
  box-shadow: 0 16px 36px rgba(31, 35, 43, 0.085);
  backdrop-filter: blur(16px);
}

.mh-stat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--mh-lavender-soft);
  color: #746cc5;
  font-size: 17px;
  font-weight: 900;
}

.mh-accent-strip strong {
  display: block;
  color: #1f232b;
  font-size: 14px;
  line-height: 1.15;
}

.mh-accent-strip p {
  margin: 3px 0 0;
  color: #6f7684;
  font-size: 11px;
  line-height: 1.35;
}

.mh-catalog-shell {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  scroll-margin-top: 124px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  padding: 30px;
  box-shadow: var(--mh-soft-shadow);
}

.mh-brand-catalog-page {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding-top: 96px;
}

.mh-global-search-page {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding-top: 96px;
}

.mh-global-search-head {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(221, 225, 232, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(31, 35, 43, 0.06);
}

.mh-global-search-head h1 {
  margin: 8px 0 6px;
  color: #171a22;
  font-size: 30px;
  line-height: 1.12;
}

.mh-global-search-head p:not(.mh-kicker) {
  margin: 0 0 8px;
  color: #687080;
  font-weight: 720;
}

.mh-global-search-form {
  width: 100%;
  border-radius: 14px;
}

.mh-global-search-results {
  margin-top: 20px;
}

.mh-brand-catalog-page .mh-catalog-shell {
  margin-top: 14px;
  border-radius: 18px;
  padding: 18px;
}

.mh-catalog-heading {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 22px 12px 14px;
}

.mh-catalog-heading h1 {
  margin: 0;
  color: #171a22;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.mh-catalog-toolbar {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  width: min(1500px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(221, 225, 232, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(31, 35, 43, 0.06);
}

.mh-catalog-toolbar .mh-brand-selector {
  min-height: 48px;
  border: 1px solid rgba(207, 212, 222, 0.82);
  border-radius: 12px;
  background: rgba(249, 250, 252, 0.9);
  padding: 8px 10px;
}

.mh-catalog-search {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  padding: 5px;
  box-shadow: inset 0 0 0 3px rgba(247, 248, 251, 0.8);
}

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

.mh-catalog-search .mh-search-submit {
  width: 44px;
  min-height: 40px;
  font-size: 17px;
}

.mh-toolbar-count {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.mh-filter-toggle {
  display: none;
  min-height: 48px;
  border: 1px solid rgba(207, 212, 222, 0.88);
  border-radius: 12px;
  background: #17231f;
  color: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 850;
}

.mh-canonical-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 62px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 225, 232, 0.86);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(144, 136, 216, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 245, 253, 0.9));
  padding: 30px;
  box-shadow: 0 20px 52px rgba(52, 48, 83, 0.09);
}

.mh-canonical-panel.is-compact {
  width: 100%;
  margin: 16px 0 0;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(31, 35, 43, 0.06);
}

.mh-canonical-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.mh-canonical-heading.is-compact {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.mh-canonical-heading .mh-kicker {
  margin: 0 0 8px;
  color: #746bc2;
}

.mh-canonical-heading h2 {
  margin: 0;
  color: #1c2029;
  font-size: 26px;
  line-height: 1.12;
}

.mh-canonical-heading.is-compact h2 {
  font-size: 23px;
}

.mh-canonical-heading > p {
  margin: 0;
  color: #697180;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.mh-canonical-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.mh-canonical-group {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(210, 213, 225, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  padding: 16px;
}

.mh-canonical-group legend {
  max-width: 100%;
  padding: 0 7px;
  color: #454b59;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.mh-canonical-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
}

.mh-canonical-toggle {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  border: 1px solid rgba(199, 203, 216, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #4b5260;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.25;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mh-canonical-toggle > span:not(.mh-canonical-toggle-mark) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mh-canonical-toggle small {
  flex: 0 0 auto;
  color: #7b8290;
  font-size: 11px;
  font-weight: 850;
}

.mh-canonical-toggle-mark {
  display: grid;
  place-items: center;
  width: 0;
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #655cb2;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  opacity: 0;
  transition: width 180ms ease, opacity 180ms ease;
}

.mh-canonical-toggle:hover {
  border-color: rgba(144, 136, 216, 0.72);
  background: #fff;
  transform: translateY(-1px);
}

.mh-canonical-toggle.is-selected,
.mh-canonical-toggle[aria-pressed="true"] {
  border-color: rgba(108, 98, 190, 0.78);
  background: #efedff;
  color: #37314f;
  box-shadow: inset 0 0 0 1px rgba(108, 98, 190, 0.14), 0 8px 18px rgba(84, 75, 153, 0.1);
}

.mh-canonical-toggle.is-selected .mh-canonical-toggle-mark,
.mh-canonical-toggle[aria-pressed="true"] .mh-canonical-toggle-mark {
  width: 18px;
  opacity: 1;
}

.mh-canonical-toggle:focus-visible,
.mh-canonical-reset:focus-visible,
.mh-canonical-submit:focus-visible,
.mh-canonical-chip button:focus-visible,
.mh-canonical-chip-reset:focus-visible,
.mh-empty-actions :focus-visible,
.mh-zero-filter-actions button:focus-visible,
.mh-canonical-unavailable-actions button:focus-visible {
  outline: 3px solid rgba(95, 86, 172, 0.42);
  outline-offset: 2px;
}

.mh-canonical-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.mh-canonical-reset,
.mh-canonical-submit,
.mh-canonical-chip-reset,
.mh-canonical-unavailable-actions button,
.mh-empty-actions button,
.mh-empty-actions a,
.mh-zero-filter-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(199, 203, 216, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #5e566f;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 850;
}

.mh-canonical-submit {
  min-width: 190px;
  border-color: #5f56ac;
  background: #5f56ac;
  color: #fff;
  box-shadow: 0 12px 28px rgba(95, 86, 172, 0.2);
}

.mh-canonical-reset:disabled,
.mh-canonical-submit:disabled {
  cursor: default;
  opacity: 0.5;
  box-shadow: none;
}

.mh-canonical-status {
  min-height: 1.3em;
  margin: 10px 0 0;
  color: #757c8a;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.mh-canonical-loading,
.mh-canonical-unavailable {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 132px;
  border: 1px dashed rgba(184, 188, 204, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: #747b89;
  padding: 20px;
  text-align: center;
}

.mh-canonical-unavailable strong {
  color: #414754;
  font-size: 16px;
}

.mh-canonical-unavailable p {
  margin: 0;
  line-height: 1.5;
}

.mh-canonical-unavailable-actions,
.mh-empty-actions,
.mh-zero-filter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
}

.mh-canonical-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
}

.mh-canonical-selected[hidden] {
  display: none;
}

.mh-canonical-selected-label {
  color: #697180;
  font-size: 12px;
  font-weight: 850;
}

.mh-canonical-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(144, 136, 216, 0.45);
  border-radius: 999px;
  background: #efedff;
  color: #47405f;
  padding: 5px 7px 5px 11px;
  font-size: 12px;
  font-weight: 820;
}

.mh-canonical-chip button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  min-height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(95, 86, 172, 0.13);
  color: #51498e;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}

.mh-canonical-chip-reset {
  min-height: 34px;
  padding: 5px 11px;
}

.mh-global-search-count {
  min-height: 28px;
  margin-top: 12px;
  color: #4f5664;
  font-size: 15px;
  font-weight: 850;
}

.mh-global-search-state {
  min-height: 300px;
}

.mh-global-search-state.is-zero {
  border-color: rgba(144, 136, 216, 0.32);
  background: rgba(249, 248, 255, 0.9);
}

.mh-global-search-state.is-taxonomy-not-ready {
  border-style: dashed;
}

.mh-zero-filter-actions button {
  min-height: 38px;
  padding: 7px 12px;
}

@media (prefers-reduced-motion: reduce) {
  .mh-canonical-toggle,
  .mh-canonical-toggle-mark {
    transition: none;
  }

  .mh-canonical-toggle:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .mh-canonical-heading,
  .mh-canonical-heading.is-compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .mh-canonical-groups {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mh-brand-landing {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 56px;
  scroll-margin-top: 124px;
}

.mh-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 20px;
}

.mh-brand-card {
  min-width: 0;
  height: 100%;
  --mh-brand-cta: #17231f;
  --mh-brand-cta-hover: #514a70;
}

.mh-brand-card[data-brand-slug="mercis"] {
  --mh-brand-cta: #50466f;
  --mh-brand-cta-hover: #65598a;
}

.mh-brand-card[data-brand-slug="froca"] {
  --mh-brand-cta: #18362d;
  --mh-brand-cta-hover: #285044;
}

.mh-brand-card[data-brand-slug="orvat"] {
  --mh-brand-cta: #6b2d1b;
  --mh-brand-cta-hover: #87432e;
}

.mh-brand-card[data-brand-slug="flukso"] {
  --mh-brand-cta: #173a68;
  --mh-brand-cta-hover: #285384;
}

.mh-brand-card[data-brand-slug="alessandro-bini"] {
  --mh-brand-cta: #00685f;
  --mh-brand-cta-hover: #008075;
}

.mh-brand-card[data-brand-slug="casal"] {
  --mh-brand-cta: #a92f48;
  --mh-brand-cta-hover: #c13a57;
}

.mh-brand-card[data-brand-slug="qubo-contract"] {
  --mh-brand-cta: #92541b;
  --mh-brand-cta-hover: #784313;
}

.mh-brand-card[data-brand-slug="eurlea"] {
  --mh-brand-cta: #7a4526;
  --mh-brand-cta-hover: #5e321b;
}

.mh-brand-card[data-brand-slug="eurlea"] .mh-brand-card-cta {
  color: #fff;
}

.mh-brand-card[data-brand-slug="alessandro-bini"] .mh-brand-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}

.mh-brand-card[data-brand-slug="alessandro-bini"] .mh-brand-card-link:hover .mh-brand-card-media img,
.mh-brand-card[data-brand-slug="alessandro-bini"] .mh-brand-card-link:focus-visible .mh-brand-card-media img {
  transform: scale(1.27);
}

.mh-brand-card-link {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(52, 58, 64, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #171a22;
  box-shadow: 0 14px 32px rgba(20, 25, 31, 0.07);
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.mh-brand-card-link:hover,
.mh-brand-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(144, 136, 216, 0.72);
  box-shadow: 0 20px 42px rgba(33, 31, 54, 0.12);
}

.mh-brand-card-link:focus-visible {
  outline: 3px solid rgba(144, 136, 216, 0.34);
  outline-offset: 3px;
}

.mh-brand-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #f4f2f7;
}

.mh-brand-card-media::after {
  position: absolute;
  inset: 0;
  box-shadow: inset -1px 0 rgba(23, 26, 34, 0.08);
  content: '';
  pointer-events: none;
}

.mh-brand-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.mh-brand-card-link:hover .mh-brand-card-media img,
.mh-brand-card-link:focus-visible .mh-brand-card-media img {
  transform: scale(1.04);
}

.mh-brand-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 14px;
  padding: 28px;
}

.mh-brand-card-category {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #716b86;
}

.mh-brand-card-name {
  font-family: var(--mh-heading-font);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 760;
  line-height: 1;
}

.mh-brand-card-name-wordmark {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.mh-brand-wordmark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: min(100%, 330px);
  min-height: 88px;
  color: #4b2c1c;
}

.mh-brand-wordmark-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: rgba(255, 250, 243, 0.25);
  stroke: currentColor;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.mh-brand-wordmark-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: flex-start;
  padding: 0 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.42rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.mh-brand-wordmark-suffix {
  margin: 0.08em 0 0 0.12em;
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.mh-brand-card-tagline {
  margin-top: -7px;
  color: #6e5141;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.94rem;
  line-height: 1.35;
}

.mh-preview-brand-identity {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 auto 14px;
}

.mh-preview-brand-name {
  display: block;
}

.mh-preview-brand-tagline {
  margin: -4px 0 2px;
  text-align: center;
}

.mh-brand-card-description {
  color: #4f5855;
  font-size: 0.98rem;
  line-height: 1.55;
}

.mh-brand-card-footer {
  display: grid;
  align-items: end;
  gap: 13px;
  margin-top: auto;
}

.mh-brand-card-count {
  color: #2e3532;
  font-size: 0.92rem;
}

.mh-brand-card-count.is-forming {
  color: #716b86;
  font-weight: 720;
}

.mh-brand-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  border-radius: 11px;
  padding: 10px 13px;
  background: var(--mh-brand-cta);
  color: #fff;
  font-weight: 700;
  transition: background-color 240ms ease;
}

.mh-brand-card-cta span {
  transition: transform 240ms ease;
}

.mh-brand-card-link:hover .mh-brand-card-cta,
.mh-brand-card-link:focus-visible .mh-brand-card-cta {
  background: var(--mh-brand-cta-hover);
}

.mh-brand-card-link:hover .mh-brand-card-cta span,
.mh-brand-card-link:focus-visible .mh-brand-card-cta span {
  transform: translateX(3px);
}

.mh-brand-section-lede {
  max-width: 760px;
  margin: 9px 0 0;
  color: #59615f;
  font-size: 1rem;
  line-height: 1.55;
}

@media (min-width: 1200px) {
  .mh-brand-landing .mh-section-title > div,
  .mh-brand-section-lede {
    width: 100%;
  }

  .mh-brand-section-lede {
    max-width: none;
    white-space: nowrap;
  }
}

.mh-filters,
.mh-empty {
  border: 1px solid rgba(221, 225, 232, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(31, 35, 43, 0.06);
}

.mh-filters {
  --mh-filter-safe-gap: 24px;
  position: sticky;
  top: var(--mh-sticky-header-space);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  max-height: calc(100vh - var(--mh-sticky-header-space) - var(--mh-filter-safe-gap));
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(31, 35, 43, 0.045);
}

.mh-filter-head,
.mh-catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mh-brand-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  color: #4f5855;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
}

.mh-brand-selector span {
  flex: 0 0 auto;
}

.mh-brand-selector select {
  min-width: 0;
  max-width: min(260px, 70vw);
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #171a22;
  padding: 7px 30px 7px 10px;
  font-weight: 850;
}

.mh-brand-selector select:focus {
  outline: 2px solid rgba(95, 86, 172, 0.36);
  outline-offset: 2px;
}

.mh-brand-selector-inline {
  vertical-align: middle;
}

.mh-filter-head {
  padding: 2px 4px 13px;
}

.mh-filter-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-color: rgba(139, 146, 161, 0.48) transparent;
  scrollbar-width: thin;
}

.mh-filter-scroll::-webkit-scrollbar {
  width: 6px;
}

.mh-filter-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mh-filter-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(139, 146, 161, 0.34);
}

.mh-filter-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 146, 161, 0.54);
}

.mh-filter-head span {
  color: #20242e;
  font-size: 17px;
  font-weight: 800;
}

.mh-filter-head button {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: #7d8493;
  padding: 4px 0;
  font-size: 12px;
}

.mh-filter-group {
  border-top: 1px solid rgba(221, 225, 232, 0.82);
  padding: 0;
}

.mh-filter-group summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: #454c58;
  font-size: 13px;
  font-weight: 820;
  list-style: none;
  cursor: pointer;
}

.mh-filter-group summary::-webkit-details-marker {
  display: none;
}

.mh-filter-group summary::after {
  margin-left: auto;
  color: #8b92a1;
  content: "⌄";
  font-size: 16px;
}

.mh-filter-group[open] summary::after {
  transform: rotate(180deg);
}

.mh-filter-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(207, 212, 222, 0.74);
  border-radius: 8px;
  color: #707684;
  font-size: 13px;
}

.mh-filter-group > div {
  display: grid;
  gap: 6px;
  padding: 0 0 14px 34px;
}

.mh-filter-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 32px;
  border-color: transparent;
  background: transparent;
  color: #4a505d;
  padding: 6px 4px;
  text-align: left;
}

.mh-filter-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mh-filter-option b {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-filter-option span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--dot, #aeb4c0);
  content: "";
}

.mh-filter-option:nth-child(3n + 1) {
  --dot: #a69fde;
}

.mh-filter-option:nth-child(3n + 2) {
  --dot: #8e9a88;
}

.mh-filter-option small {
  color: #8b92a1;
  font-size: 11px;
  font-weight: 800;
}

.mh-filter-option.is-active {
  border-color: rgba(144, 136, 216, 0.32);
  background: rgba(239, 237, 255, 0.64);
  color: #5d56ad;
  padding-right: 9px;
  padding-left: 9px;
}

.mh-filter-option.is-disabled {
  cursor: default;
  opacity: 0.72;
}

.mh-color-filter {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
  padding-bottom: 16px !important;
}

.mh-color-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(31, 35, 43, 0.1);
  border-radius: 999px;
  background: var(--dot);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.mh-color-more {
  align-self: center;
  color: #8b92a1;
  font-size: 12px;
  font-weight: 800;
}

.mh-filter-empty {
  color: #8b92a1;
  font-size: 12px;
  font-weight: 700;
}

.mh-catalog {
  min-width: 0;
  padding: 0;
}

.mh-catalog-head {
  min-height: 58px;
  margin-bottom: 12px;
}

.mh-catalog h2 {
  margin: 5px 0 0;
  color: #171a22;
  font-size: 26px;
  font-weight: 820;
  line-height: 1.1;
}

.mh-catalog .mh-kicker {
  border: 0;
  background: transparent;
  color: #7d8493;
  padding: 0;
  font-weight: 820;
}

.mh-count {
  border: 1px solid rgba(221, 225, 232, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  color: #7b8290;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.mh-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
  margin-bottom: 12px;
}

.mh-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 9px;
  color: #697180;
  font-size: 12px;
  font-weight: 800;
}

.mh-chip button {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  min-height: 18px;
  border: 0;
  border-radius: 999px;
  background: #eef1f5;
  color: #424854;
  padding: 0;
  line-height: 1;
}

.mh-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: var(--mh-catalog-row-height);
  gap: var(--mh-catalog-gap);
}

.mh-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: #e7ebf0;
  box-shadow: 0 14px 30px rgba(31, 35, 43, 0.075);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.mh-card:hover {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 44px rgba(31, 35, 43, 0.12);
  transform: translateY(-3px);
}

.mh-card-loading {
  grid-row: span var(--mh-card-row-span);
  min-height: 258px;
  background: linear-gradient(90deg, #eef1f5, #ffffff, #eef1f5);
  background-size: 240% 100%;
  animation: mh-shimmer 1.2s linear infinite;
}

@keyframes mh-shimmer {
  to {
    background-position: -240% 0;
  }
}

.mh-material-card {
  grid-row: span var(--mh-card-row-span);
  cursor: pointer;
}

.mh-material-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}

.mh-material-link:focus-visible {
  outline: 2px solid rgba(144, 136, 216, 0.78);
  outline-offset: -5px;
}

.mh-material-card.is-featured {
  box-shadow: 0 18px 42px rgba(31, 35, 43, 0.1);
}

.mh-material-card.is-wide {
  grid-column: span 2;
  grid-row: span var(--mh-card-row-span);
}

.mh-material-card.is-tall {
  grid-column: span 1;
  grid-row: span var(--mh-tall-card-row-span);
}

.mh-material-card.is-tall .mh-card-body {
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.mh-card-media {
  position: absolute;
  inset: 0;
}

.mh-card-media {
  background:
    linear-gradient(135deg, rgba(144, 136, 216, 0.12), rgba(135, 147, 132, 0.13)),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.48) 0 1px, transparent 1px 10px),
    #dce1e7;
}

.mh-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.mh-card:hover .mh-card-media img {
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1.028);
}

.mh-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(31, 35, 43, 0) 0%, rgba(31, 35, 43, 0.015) 58%, rgba(31, 35, 43, 0.2) 100%);
}

.mh-fallback-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(31, 35, 43, 0.2);
  font-size: 48px;
  font-weight: 650;
}

.mh-sample-badge,
.mh-card-heart {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #5f56ac;
  backdrop-filter: blur(12px);
}

.mh-sample-badge {
  top: 10px;
  left: 10px;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 6px 16px rgba(31, 35, 43, 0.055);
  color: rgba(95, 86, 172, 0.88);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 760;
}

.mh-card-heart {
  display: grid;
  place-items: center;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: rgba(255, 255, 255, 0.96);
  background: rgba(31, 35, 43, 0.18);
  padding: 0;
  font-size: 19px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.mh-card-heart.is-saved {
  color: #fff;
  background: rgba(144, 136, 216, 0.72);
}

.mh-card:hover .mh-card-heart {
  background: rgba(31, 35, 43, 0.28);
  transform: translateY(-1px);
}

.mh-card:hover .mh-card-heart.is-saved {
  background: rgba(144, 136, 216, 0.84);
}

.mh-card-body {
  position: absolute;
  z-index: 2;
  right: 7px;
  bottom: 7px;
  left: 7px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.56);
  padding: 7px 8px 6px;
  box-shadow: 0 6px 16px rgba(31, 35, 43, 0.055);
  backdrop-filter: blur(14px) saturate(1.04);
}

.mh-material-card.is-brand-catalog .mh-card-body {
  gap: 1px;
  padding: 5px 7px 4px;
}

.mh-card h3 {
  margin: 0;
  overflow: hidden;
  color: #171a22;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-card p {
  display: none;
}

.mh-card-category {
  overflow: hidden;
  color: #6f7684;
  font-size: 10px;
  font-weight: 680;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-card-meta {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.mh-card-price {
  flex: 0 0 auto;
  color: #565f70;
  font-size: 10px;
  font-weight: 780;
  line-height: 1.25;
  white-space: nowrap;
}

.mh-card-action {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 32px;
  min-height: 32px;
  align-self: center;
  border-color: transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--mh-graphite);
  padding: 0;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(31, 35, 43, 0.085);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mh-card:hover .mh-card-action {
  background: var(--mh-graphite);
  color: #fff;
  transform: translateX(1px);
}

.mh-empty {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 260px;
  margin-top: 18px;
  padding: 22px;
  text-align: center;
}

.mh-empty[hidden] {
  display: none;
}

.mh-empty strong {
  font-size: 20px;
}

.mh-empty p {
  margin: 0;
  color: #707684;
}

.mh-pagination {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 22px;
}

.mh-loaded-count,
.mh-pagination-done {
  color: #707684;
  font-size: 13px;
  font-weight: 820;
}

.mh-pagination-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mh-pagination-actions button {
  min-height: 42px;
  border: 1px solid rgba(207, 212, 222, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #5f56ac;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 860;
  box-shadow: 0 12px 28px rgba(31, 35, 43, 0.06);
}

.mh-pagination-actions button:hover:not(:disabled) {
  border-color: rgba(144, 136, 216, 0.42);
  background: #fff;
  transform: translateY(-1px);
}

.mh-pagination-actions button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.mh-workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 250, 0.78)),
    linear-gradient(135deg, rgba(144, 136, 216, 0.1), rgba(135, 147, 132, 0.12));
  padding: 28px;
  box-shadow: var(--mh-soft-shadow);
}

.mh-workflow-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.mh-workflow-copy h2 {
  margin: 0;
  color: #171a22;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

.mh-workflow-copy p:not(.mh-kicker) {
  max-width: 520px;
  margin: 0;
  color: #646b78;
  font-size: 16px;
  line-height: 1.55;
}

.mh-workflow-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(31, 35, 43, 0.08);
  border-radius: 999px;
  background: var(--mh-graphite);
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(31, 35, 43, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mh-workflow-cta:hover {
  box-shadow: 0 16px 30px rgba(31, 35, 43, 0.16);
  transform: translateY(-1px);
}

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

.mh-workflow-steps li {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 11px;
  min-height: 206px;
  overflow: hidden;
  border: 1px solid rgba(221, 225, 232, 0.82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 12%, rgba(144, 136, 216, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 252, 0.7));
  padding: 15px;
  box-shadow: 0 12px 26px rgba(31, 35, 43, 0.045);
}

.mh-workflow-steps li::before {
  position: absolute;
  top: 48px;
  right: -7px;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(144, 136, 216, 0.28), rgba(144, 136, 216, 0));
  content: "";
}

.mh-workflow-steps li:last-child::before {
  display: none;
}

.mh-workflow-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.mh-workflow-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: rgba(144, 136, 216, 0.12);
  color: #5f56ac;
  font-size: 12px;
  font-weight: 880;
}

.mh-workflow-icon-shell {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 235, 252, 0.78)),
    rgba(144, 136, 216, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(144, 136, 216, 0.13);
}

.mh-workflow-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  color: rgba(31, 35, 43, 0.78);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 14px rgba(144, 136, 216, 0.13));
}

.mh-workflow-steps li:nth-child(2n) .mh-workflow-icon,
.mh-workflow-steps li:nth-child(2n) .mh-workflow-number {
  color: rgba(95, 86, 172, 0.82);
}

.mh-workflow-steps li:nth-child(3n) .mh-workflow-icon,
.mh-workflow-steps li:nth-child(3n) .mh-workflow-number {
  color: rgba(84, 93, 82, 0.84);
}

.mh-workflow-steps strong {
  color: #1f232b;
  font-size: 15px;
  line-height: 1.2;
}

.mh-workflow-steps p {
  margin: 0;
  color: #707684;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 1320px) {
  .mh-workflow {
    grid-template-columns: 1fr;
  }

  .mh-workflow-copy {
    max-width: 760px;
  }
}

.mh-selection-open,
.mh-request-open {
  overflow: hidden;
}

.mh-selection-drawer,
.mh-request-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.mh-selection-drawer[hidden],
.mh-request-drawer[hidden] {
  display: none;
}

.mh-selection-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 43, 0.34);
  backdrop-filter: blur(10px);
}

.mh-selection-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  width: min(620px, calc(100vw - 28px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 250, 0.94)),
    var(--mh-shell);
  box-shadow: 0 28px 90px rgba(31, 35, 43, 0.24);
  padding: 24px;
}

.mh-selection-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #3c424f;
  font-size: 24px;
  line-height: 1;
}

.mh-selection-head,
.mh-selection-success {
  display: grid;
  gap: 10px;
  padding-right: 44px;
}

.mh-selection-sheet-header > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.mh-selection-sheet-body,
.mh-selection-sheet-footer {
  display: contents;
}

.mh-selection-head h2,
.mh-selection-success h2 {
  margin: 0;
  color: #171a22;
  font-size: 30px;
  line-height: 1.12;
}

.mh-selection-list {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
}

.mh-selection-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(221, 225, 232, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px;
}

.mh-selection-thumb {
  display: grid;
  place-items: center;
  width: 86px;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-radius: 14px;
  background: #e2e6ec;
  color: #747c8b;
  font-weight: 860;
}

.mh-selection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-selection-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.mh-selection-title-row,
.mh-selection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mh-selection-title-row span,
.mh-selection-title-row b,
.mh-selection-meta span {
  border: 1px solid rgba(221, 225, 232, 0.78);
  border-radius: 999px;
  background: rgba(246, 247, 250, 0.78);
  padding: 5px 8px;
  color: #687080;
  font-size: 11px;
  font-weight: 820;
}

.mh-selection-title-row b {
  border-color: rgba(144, 136, 216, 0.24);
  background: rgba(239, 237, 255, 0.78);
  color: #6f66bd;
}

.mh-selection-title {
  overflow: hidden;
  color: #1f232b;
  font-size: 15px;
  font-weight: 880;
  line-height: 1.24;
  text-overflow: ellipsis;
}

.mh-selection-remove {
  min-height: 36px;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 999px;
  background: #fff;
  color: #6f7684;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 840;
}

.mh-selection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mh-selection-actions a,
.mh-selection-actions button,
.mh-selection-submit,
.mh-selection-empty button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #5f56ac;
  padding: 10px 16px;
  font-weight: 860;
}

.mh-selection-submit {
  width: 100%;
  border-color: rgba(144, 136, 216, 0.42);
  background: linear-gradient(135deg, #8f86d8, #a69fde);
  color: #fff;
  box-shadow: 0 14px 28px rgba(144, 136, 216, 0.22);
}

.mh-selection-submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.mh-selection-empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 300px;
  border: 1px dashed rgba(207, 212, 222, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  color: #596171;
  text-align: center;
}

.mh-selection-form {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(221, 225, 232, 0.86);
  padding-top: 16px;
}

.mh-selection-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mh-selection-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.mh-selection-form label.is-wide {
  grid-column: 1 / -1;
}

.mh-selection-form label span {
  color: #5f6674;
  font-size: 12px;
  font-weight: 840;
}

.mh-selection-form input,
.mh-selection-form textarea {
  width: 100%;
  border: 1px solid rgba(207, 212, 222, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: #242832;
  padding: 11px 12px;
  outline: none;
}

.mh-selection-form textarea {
  min-height: 104px;
  resize: vertical;
}

.mh-selection-form input:focus,
.mh-selection-form textarea:focus {
  border-color: rgba(144, 136, 216, 0.62);
  box-shadow: 0 0 0 3px rgba(144, 136, 216, 0.12);
}

.mh-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mh-selection-form-error {
  border: 1px solid rgba(183, 77, 77, 0.22);
  border-radius: 14px;
  background: rgba(255, 238, 238, 0.74);
  color: #9d3e3e;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 780;
}

.mh-selection-success {
  align-content: center;
  min-height: 100%;
  padding-right: 0;
}

.mh-selection-success p:not(.mh-kicker) {
  margin: 0;
  color: #5f6674;
  font-size: 15px;
  line-height: 1.56;
}

.mh-request-panel {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.mh-request-subtitle {
  margin: 0;
  color: #626a79;
  font-size: 14px;
  line-height: 1.5;
}

.mh-request-material {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(144, 136, 216, 0.2);
  border-radius: 16px;
  background: rgba(239, 237, 255, 0.5);
  padding: 12px;
}

.mh-request-material strong {
  color: #252a34;
  font-size: 14px;
  line-height: 1.25;
}

.mh-request-material span {
  color: #687080;
  font-size: 12px;
  font-weight: 780;
}

.mh-request-file-picker {
  display: grid;
  gap: 7px;
}

.mh-request-file-picker small {
  color: #777f8e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.mh-request-file-list {
  display: grid;
  gap: 8px;
}

.mh-request-file-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(221, 225, 232, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  padding: 9px 10px;
}

.mh-request-file-row span {
  min-width: 0;
  overflow: hidden;
  color: #303542;
  font-size: 13px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-request-file-row small {
  color: #777f8e;
  font-weight: 700;
}

.mh-request-file-row button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 999px;
  background: #fff;
  color: #6f7684;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 820;
}

.mh-selection-share-page {
  padding-bottom: 34px;
}

.mh-selection-share-hero {
  display: grid;
  gap: 14px;
  padding: 42px 44px 22px;
}

.mh-selection-share-hero h1 {
  margin: 0;
  color: #171a22;
  font-size: 38px;
  line-height: 1.08;
}

.mh-selection-share-hero p:not(.mh-kicker) {
  max-width: 680px;
  margin: 0;
  color: #626a79;
  font-size: 15px;
  line-height: 1.55;
}

.mh-public-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 44px 28px;
}

.mh-public-selection-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--mh-soft-shadow);
}

.mh-public-selection-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.22 / 0.86;
  overflow: hidden;
  background: #e2e6ec;
  color: #747c8b;
  font-weight: 860;
}

.mh-public-selection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-public-selection-media b {
  position: absolute;
  left: 10px;
  top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(239, 237, 255, 0.82);
  color: #6f66bd;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 860;
  backdrop-filter: blur(12px);
}

.mh-public-selection-body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.mh-toast {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(31, 35, 43, 0.14);
  color: var(--mh-graphite);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(18px);
}

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

.mh-detail-page {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding-top: 96px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 2%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(241, 243, 247, 0.96));
  box-shadow: var(--mh-shadow);
  overflow: hidden;
}

.mh-detail-topbar {
  border-bottom: 1px solid rgba(221, 225, 232, 0.7);
}

.mh-detail-topbar .mh-link {
  border-radius: 14px;
}

.mh-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 22px 44px 0;
  min-width: 0;
}

.mh-detail-nav .mh-breadcrumb {
  flex: 1 1 420px;
}

.mh-detail-sequence {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.mh-detail-sequence-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(126, 118, 194, 0.3);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  color: #4e486e;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.mh-detail-sequence-button > span[aria-hidden="true"] {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.mh-detail-sequence-button:hover:not(:disabled) {
  border-color: rgba(95, 86, 172, 0.62);
  background: #fff;
}

.mh-detail-sequence-button:focus-visible {
  outline: 3px solid rgba(95, 86, 172, 0.42);
  outline-offset: 2px;
}

.mh-detail-sequence-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.mh-detail-position {
  min-width: 74px;
  color: #687080;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 820;
  text-align: center;
  white-space: nowrap;
}

.mh-detail-back {
  flex: 0 0 auto;
  color: var(--mh-graphite);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}

.mh-detail-back:hover,
.mh-detail-back:focus-visible {
  text-decoration: underline;
}

.mh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 0;
  color: #737b8b;
  font-size: 13px;
  font-weight: 720;
}

.mh-breadcrumb a {
  color: var(--mh-graphite);
}

.mh-breadcrumb [data-brand-selector-root] {
  min-width: 0;
}

.mh-detail-loading,
.mh-not-found {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 520px;
  padding: 48px 44px;
}

.mh-not-found {
  display: block;
  max-width: 760px;
}

.mh-detail-loading h1,
.mh-not-found h1,
.mh-detail-panel h1,
.mh-section-title h2,
.mh-detail-cta h2 {
  margin: 0;
  color: #171a22;
  font-family: var(--mh-heading-font);
  letter-spacing: 0;
}

.mh-detail-loading p:not(.mh-kicker),
.mh-not-found p:not(.mh-kicker) {
  color: var(--mh-muted);
}

.mh-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 26px;
  align-items: start;
  padding: 28px 44px 34px;
}

.mh-detail-gallery,
.mh-detail-panel,
.mh-detail-section,
.mh-detail-cta {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--mh-soft-shadow);
  backdrop-filter: blur(18px);
}

.mh-detail-gallery {
  padding: 12px;
  transition: transform 0.18s ease;
}

.mh-detail-gallery.is-swipe-next {
  transform: translateX(-5px);
}

.mh-detail-gallery.is-swipe-previous {
  transform: translateX(5px);
}

.mh-main-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #dfe3e9;
  padding: 0;
  contain: paint;
  cursor: zoom-in;
}

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

.mh-main-photo.is-official-media-unavailable {
  display: grid;
  place-items: center;
  cursor: default;
  background: linear-gradient(145deg, #f4f2ed, #e8e5df);
}

.mh-main-photo.is-official-media-unavailable::after {
  display: none;
}

.mh-no-media-state {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 32px;
  color: #65615b;
  text-align: center;
}

.mh-no-media-state strong {
  color: #373431;
  font-size: 18px;
}

.mh-no-media-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(101, 97, 91, 0.28);
  border-radius: 50%;
  font-size: 28px;
}

.mh-reviewed-no-variants {
  border: 1px solid rgba(95, 86, 172, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(245, 242, 255, 0.72);
  color: #5d5872;
  font-size: 13px;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .mh-related-collection-links a {
    animation: none !important;
    transition: none !important;
  }

  .mh-detail-gallery {
    transition: none !important;
  }
}

.mh-main-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(31, 35, 43, 0.24));
  pointer-events: none;
}

.mh-photo-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 7px 10px;
  color: #4d5565;
  font-size: 11px;
  font-weight: 760;
  backdrop-filter: blur(14px);
}

.mh-zoom-loupe {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 360% 360%;
  box-shadow: 0 18px 44px rgba(31, 35, 43, 0.22);
  opacity: 0;
  pointer-events: none;
  contain: layout paint style;
  transform: translate3d(var(--mh-loupe-x, -999px), var(--mh-loupe-y, -999px), 0) translate(-50%, -50%) scale(0.96);
  transition: opacity 0.16s ease, transform 0.16s ease;
  will-change: transform, opacity, background-position;
}

.mh-zoom-loupe.is-visible {
  opacity: 1;
  transform: translate3d(var(--mh-loupe-x, -999px), var(--mh-loupe-y, -999px), 0) translate(-50%, -50%) scale(1);
}

.mh-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mh-media-group {
  min-width: 0;
  margin-top: 14px;
}

.mh-media-group h3 {
  margin: 0 0 8px;
  color: #596170;
  font-size: 13px;
  font-weight: 800;
}

.mh-media-group .mh-thumbs {
  margin-top: 0;
}

.mh-thumbs-interior {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mh-thumbs-interior button {
  aspect-ratio: 4 / 3;
}

.mh-thumbs button,
.mh-variant-grid button,
.mh-variant-thumb {
  border: 1px solid rgba(207, 212, 222, 0.72);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.mh-thumbs button {
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  border-radius: 14px;
  padding: 0;
}

.mh-thumbs button.is-active,
.mh-variant-grid button.is-active,
.mh-variant-thumb.is-active {
  border-color: rgba(144, 136, 216, 0.86);
  box-shadow: 0 0 0 3px rgba(144, 136, 216, 0.14);
}

.mh-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-variant-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 108px));
  gap: 10px;
  justify-content: start;
  margin-top: 12px;
  overflow: visible;
  padding: 2px;
}

.mh-variant-thumb {
  display: block;
  min-width: 0;
  border-radius: 16px;
  padding: 6px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mh-variant-thumb:hover {
  border-color: rgba(144, 136, 216, 0.62);
  transform: translateY(-1px);
}

.mh-variant-load-more {
  min-height: 92px;
  border: 1px dashed rgba(144, 136, 216, 0.7);
  border-radius: 16px;
  background: rgba(246, 245, 255, 0.82);
  color: #625aa7;
  padding: 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.mh-variant-load-more:hover {
  border-style: solid;
  background: rgba(239, 237, 255, 0.96);
}

.mh-variant-thumb.is-official-media-unavailable .mh-variant-swatch {
  background: linear-gradient(145deg, #f4f2ed, #e8e5df);
}

.mh-variant-no-media-mark {
  display: grid;
  min-height: 62px;
  place-items: center;
  color: #77716a;
  font-size: 24px;
}

.mh-detail-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 26px;
}

.mh-detail-panel .mh-kicker,
.mh-section-title .mh-kicker,
.mh-detail-cta .mh-kicker {
  margin: 0;
}

.mh-detail-panel h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
}

.mh-detail-meta,
.mh-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mh-detail-meta span,
.mh-detail-badges span {
  border: 1px solid rgba(221, 225, 232, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 7px 10px;
  color: #5e6675;
  font-size: 12px;
  font-weight: 760;
}

.mh-detail-meta span.mh-detail-feature {
  border-color: rgba(144, 136, 216, 0.26);
  background: rgba(239, 237, 255, 0.72);
  color: #6f66bd;
}

.mh-selection-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mh-selected-variant,
.mh-public-price {
  justify-self: start;
  border: 1px solid rgba(144, 136, 216, 0.26);
  border-radius: 999px;
  background: rgba(244, 242, 255, 0.72);
  padding: 8px 12px;
  color: #5f58a8;
  font-size: 12px;
  font-weight: 820;
}

.mh-public-price,
.mh-selection-price {
  border-color: rgba(221, 225, 232, 0.86);
  background: rgba(255, 255, 255, 0.72);
  color: #565f70;
}

.mh-detail-badges span {
  border-color: rgba(144, 136, 216, 0.22);
  background: rgba(239, 237, 255, 0.68);
  color: #6f66bd;
}

.mh-detail-description {
  margin: 0;
  color: #626a79;
  font-size: 15px;
  line-height: 1.58;
}

.mh-public-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mh-public-specs div,
.mh-public-specs.is-empty {
  border: 1px solid rgba(221, 225, 232, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  padding: 10px;
}

.mh-public-specs span {
  display: block;
  margin-bottom: 4px;
  color: #7c8492;
  font-size: 10.5px;
  font-weight: 820;
}

.mh-public-specs strong {
  display: block;
  overflow: hidden;
  color: #252a34;
  font-size: 12.5px;
  line-height: 1.28;
  text-overflow: ellipsis;
}

.mh-public-specs.is-empty {
  color: #6f7684;
  font-size: 13px;
  font-weight: 720;
}

.mh-detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mh-detail-actions button,
.mh-detail-cta button,
.mh-detail-primary {
  min-height: 46px;
  border: 1px solid rgba(207, 212, 222, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--mh-graphite);
  padding: 11px 14px;
  font-weight: 820;
  text-align: center;
}

.mh-detail-primary,
.mh-detail-actions .mh-detail-primary.is-saved,
.mh-detail-cta button.is-saved {
  border-color: rgba(144, 136, 216, 0.45);
  background: linear-gradient(135deg, #8f86d8, #a69fde);
  color: #fff;
  box-shadow: 0 14px 28px rgba(144, 136, 216, 0.22);
}

.mh-trust-card {
  border: 1px solid rgba(221, 225, 232, 0.82);
  border-radius: 18px;
  background: rgba(246, 247, 250, 0.72);
  padding: 16px;
}

.mh-trust-card strong {
  display: block;
  margin-bottom: 6px;
}

.mh-trust-card p {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

.mh-trust-card a {
  color: #6f66bd;
  font-size: 13px;
  font-weight: 820;
}

.mh-detail-section,
.mh-detail-cta {
  margin: 18px 44px;
  padding: 24px;
}

.mh-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.mh-section-title h2,
.mh-detail-cta h2 {
  font-size: 26px;
  font-weight: 700;
}

.mh-variant-grid,
.mh-character-grid,
.mh-benefit-grid,
.mh-related-grid {
  display: grid;
  gap: 12px;
}

.mh-variant-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mh-variant-grid button {
  display: grid;
  gap: 8px;
  min-width: 0;
  border-radius: 16px;
  padding: 10px;
  text-align: left;
}

.mh-variant-swatch {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(31, 35, 43, 0.05)),
    var(--swatch, #d9dce2);
}

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

.mh-variant-code,
.mh-variant-check {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.72);
  color: #454b56;
  backdrop-filter: blur(10px);
}

.mh-variant-code {
  left: 6px;
  top: 6px;
  min-width: 34px;
  min-height: 20px;
  border-radius: 999px;
  padding: 0 7px;
  font-size: 10px;
  font-weight: 880;
}

.mh-variant-check {
  right: 6px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #fff;
  background: rgba(144, 136, 216, 0.92);
  font-size: 11px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mh-variant-thumb.is-active .mh-variant-check {
  opacity: 1;
  transform: scale(1);
}

.mh-variant-grid strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.mh-character-grid article,
.mh-benefit-grid article {
  border: 1px solid rgba(221, 225, 232, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 14px;
}

.mh-character-grid span {
  display: block;
  margin-bottom: 6px;
  color: #7a8290;
  font-size: 11px;
  font-weight: 800;
}

.mh-character-grid strong {
  color: #252a34;
  font-size: 14px;
  line-height: 1.35;
}

.mh-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.mh-benefit-grid article {
  min-width: 0;
}

.mh-benefit-grid[data-benefit-count="1"] {
  grid-template-columns: minmax(0, 1fr);
  max-width: 420px;
}

.mh-benefit-grid[data-benefit-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

.mh-benefit-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #242832;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.mh-benefit-grid p,
.mh-detail-cta p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.mh-benefit-grid p {
  overflow-wrap: anywhere;
}

.mh-related-collection-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mh-related-collection-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 150px;
  border: 1px solid rgba(100, 91, 157, 0.24);
  border-radius: 14px;
  background: rgba(246, 244, 255, 0.72);
  color: #403872;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.mh-related-collection-links a:hover,
.mh-related-collection-links a:focus-visible {
  border-color: #645b9d;
  transform: translateY(-1px);
}

.mh-document-list {
  display: grid;
  gap: 10px;
}

.mh-document-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(221, 225, 232, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 14px;
}

.mh-document-copy {
  min-width: 0;
  flex: 1 1 260px;
}

.mh-document-list span {
  display: block;
  margin-top: 4px;
  color: #7a8290;
  font-size: 12px;
}

.mh-document-actions {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mh-document-list .mh-document-action {
  display: inline-flex;
  min-height: 44px;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mh-lavender-soft);
  color: #6f66bd;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 820;
  text-align: center;
}

.mh-document-list .mh-document-action-view {
  border: 1px solid rgba(111, 102, 189, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

.mh-flukso-full-description .mh-prose {
  max-width: 920px;
  color: #424854;
  font-size: 15px;
  line-height: 1.75;
}

.mh-flukso-full-description .mh-prose p {
  margin: 0 0 16px;
}

.mh-flukso-full-description .mh-prose p:last-child,
.mh-flukso-full-description .mh-prose ul:last-child {
  margin-bottom: 0;
}

.mh-flukso-full-description .mh-prose ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.mh-flukso-full-description .mh-prose li::marker {
  color: #6f66bd;
}

.mh-flukso-semantics {
  display: grid;
  gap: 20px;
}

.mh-flukso-semantics > .mh-section-title {
  display: grid;
  justify-content: start;
  margin-bottom: 0;
}

.mh-flukso-semantic-group {
  display: grid;
  gap: 10px;
}

.mh-flukso-semantic-group h3 {
  margin: 0;
  color: #303540;
  font-size: 15px;
  font-weight: 800;
}

.mh-flukso-semantic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mh-flukso-semantic-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  border: 1px solid rgba(221, 225, 232, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 12px;
}

.mh-flukso-semantic-item span {
  min-width: 0;
  color: #424854;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mh-flukso-semantic-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--mh-lavender-soft);
  color: #6f66bd;
  padding: 6px;
}

.mh-roll-only-notice {
  margin: 12px 0 0;
  border-left: 3px solid #92541b;
  border-radius: 8px;
  background: rgba(146, 84, 27, 0.09);
  color: #65370f;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 760;
}

.mh-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 237, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
}

.mh-detail-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.mh-related-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mh-related-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: #e7ebf0;
  box-shadow: 0 14px 30px rgba(31, 35, 43, 0.075);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.mh-related-card:hover {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 44px rgba(31, 35, 43, 0.12);
  transform: translateY(-3px);
}

.mh-soft-empty {
  border: 1px dashed rgba(207, 212, 222, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  padding: 18px;
  color: #6f7684;
  font-weight: 720;
}

.mh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: rgba(17, 20, 27, 0.82);
  padding: 28px;
}

.mh-lightbox[hidden] {
  display: none;
}

.mh-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.mh-lightbox-close,
.mh-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(14px);
}

.mh-lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.mh-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  font-size: 42px;
  transform: translateY(-50%);
}

.mh-lightbox-nav.is-prev {
  left: 22px;
}

.mh-lightbox-nav.is-next {
  right: 22px;
}

.mh-lightbox-open {
  overflow: hidden;
}

.mh-about-page {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding-top: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 4%, rgba(144, 136, 216, 0.14), transparent 23%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.97), rgba(241, 243, 247, 0.98));
  box-shadow: var(--mh-shadow);
}

.mh-about-hero,
.mh-about-section,
.mh-about-metrics,
.mh-about-final-cta {
  width: min(1220px, calc(100% - 88px));
  margin: 0 auto;
}

.mh-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 4.5vw, 62px);
  align-items: center;
  padding: 62px 0 74px;
}

.mh-about-hero-copy {
  min-width: 0;
}

.mh-about-hero h1,
.mh-about-section h2,
.mh-about-final-cta h2 {
  margin: 0;
  color: var(--mh-graphite);
  font-family: var(--mh-heading-font);
  letter-spacing: 0;
  line-height: 1.07;
}

.mh-about-hero h1 {
  max-width: 800px;
  font-size: clamp(34px, 2.75vw, 39px);
  font-weight: 690;
}

.mh-about-hero-copy > p:not(.mh-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #5e6572;
  font-size: 16px;
  line-height: 1.72;
}

.mh-about-hero-copy .mh-about-lede {
  color: #343a46;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 720;
  line-height: 1.48;
}

.mh-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mh-about-actions a,
.mh-about-actions button,
.mh-about-final-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid #766dc2;
  border-radius: 14px;
  background: #766dc2;
  color: #fff;
  padding: 12px 20px;
  font-weight: 820;
  box-shadow: 0 12px 26px rgba(118, 109, 194, 0.18);
}

.mh-about-actions button {
  border-color: var(--mh-line-strong);
  background: #fff;
  color: var(--mh-graphite);
  box-shadow: none;
}

.mh-about-actions a:hover,
.mh-about-actions a:focus-visible,
.mh-about-final-cta button:hover,
.mh-about-final-cta button:focus-visible {
  background: #665db2;
}

.mh-about-actions button:hover,
.mh-about-actions button:focus-visible {
  border-color: #a9a2dc;
  background: var(--mh-lavender-soft);
}

.mh-about-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 212, 222, 0.9);
  border-radius: 24px;
  background: #f2f0ed;
  box-shadow: var(--mh-soft-shadow);
}

.mh-about-hero-media img {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 470px);
  object-fit: cover;
  object-position: 61% 48%;
  transform: scale(1.06);
}

.mh-about-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 48%, rgba(246, 243, 250, 0.1));
  content: "";
  pointer-events: none;
}

.mh-about-section {
  padding: 74px 0;
}

.mh-about-positioning,
.mh-about-process,
.mh-about-projects {
  border-top: 1px solid rgba(207, 212, 222, 0.72);
}

.mh-about-positioning,
.mh-about-process {
  padding-top: 50px;
}

.mh-about-section-heading {
  max-width: 850px;
}

.mh-about-section-heading h2,
.mh-about-final-cta h2 {
  font-size: clamp(27px, 2.45vw, 37px);
  font-weight: 700;
}

.mh-about-section-heading > p:not(.mh-kicker),
.mh-about-final-cta p:not(.mh-kicker) {
  margin: 18px 0 0;
  color: #626a77;
  font-size: 16px;
  line-height: 1.72;
}

.mh-about-value-grid,
.mh-about-audience-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.mh-about-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mh-about-value-grid article,
.mh-about-audience-grid article {
  min-width: 0;
  border: 1px solid rgba(207, 212, 222, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(31, 35, 43, 0.045);
}

.mh-about-card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--mh-lavender-soft);
  color: #6f66bc;
}

.mh-about-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mh-about-value-grid h3,
.mh-about-audience-grid h3,
.mh-about-process-list h3,
.mh-about-project-types h3 {
  color: var(--mh-graphite);
  font-size: 17px;
  line-height: 1.32;
}

.mh-about-value-grid p,
.mh-about-audience-grid p,
.mh-about-process-list p,
.mh-about-project-types p {
  margin: 10px 0 0;
  color: #68707d;
  font-size: 14px;
  line-height: 1.62;
}

.mh-about-value-grid h3 {
  margin: 0;
}

.mh-about-audience-grid h3,
.mh-about-process-list h3 {
  margin: 16px 0 0;
}

.mh-about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(202, 207, 218, 0.9);
  border-radius: 22px;
  background: rgba(202, 207, 218, 0.9);
  box-shadow: var(--mh-soft-shadow);
}

.mh-about-metrics article {
  display: flex;
  min-width: 0;
  min-height: 176px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px 24px;
}

.mh-about-metric-content {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: minmax(66px, auto) minmax(3em, auto);
  gap: 10px;
  align-content: center;
}

.mh-about-metrics strong {
  display: flex;
  min-height: 0;
  align-items: center;
  color: #635aaf;
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.15;
}

.mh-about-metrics span {
  min-height: 0;
  margin-top: 0;
  color: #626a77;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
}

.mh-about-audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mh-about-audience-grid article {
  padding: 28px;
}

.mh-about-audience-grid h3 {
  font-size: 20px;
}

.mh-about-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.mh-about-process-list li {
  min-width: 0;
  border-top: 2px solid #aaa3df;
  padding: 22px 14px 0 0;
}

.mh-about-process-list li > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mh-lavender-soft);
  color: #665db2;
  font-weight: 850;
}

.mh-about-process-list h3 {
  margin-top: 16px;
}

.mh-about-projects {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 70px;
}

.mh-about-project-types {
  display: grid;
  gap: 10px;
}

.mh-about-project-types article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(207, 212, 222, 0.88);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
  padding: 15px 16px;
  color: #414753;
}

.mh-about-project-types .mh-about-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.mh-about-project-types h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 790;
}

.mh-about-project-types p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.48;
}

.mh-about-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 240px);
  gap: 20px;
  align-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(199, 194, 235, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(144, 136, 216, 0.19), transparent 35%),
    rgba(255, 255, 255, 0.88);
  padding: clamp(26px, 3.2vw, 38px);
  box-shadow: var(--mh-soft-shadow);
}

.mh-about-final-cta h2 {
  max-width: 760px;
}

.mh-about-final-cta button {
  width: 100%;
  max-width: 240px;
}

.mh-about-final-action {
  display: grid;
  gap: 10px;
  align-self: center;
}

.mh-about-final-action small {
  color: #707784;
  font-size: 11px;
  font-weight: 680;
  line-height: 1.45;
  text-align: center;
}

@media (min-width: 1280px) {
  .mh-about-audience .mh-about-section-heading,
  .mh-about-process .mh-about-section-heading {
    max-width: none;
  }

  #mh-about-audience-title,
  #mh-about-process-title {
    white-space: nowrap;
  }
}

@media (max-width: 1240px) {
  .mh-topbar {
    grid-template-columns: auto 1fr;
  }

  .mh-nav-links {
    display: none;
  }

  .mh-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

  .mh-hero h1 {
    font-size: 38px;
  }

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

  .mh-detail-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }

  .mh-variant-grid,
  .mh-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .mh-workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mh-workflow-steps li::before {
    display: none;
  }

  .mh-about-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-about-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 980px) {
  .mh-flukso-semantic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-page {
    padding: 12px;
  }

  .mh-hero {
    min-height: auto;
    padding-top: 88px;
    border-radius: 22px;
  }

  .mh-hero-grid {
    padding: 18px;
  }

  .mh-topbar {
    top: 0;
    width: 100%;
    min-height: 68px;
    gap: 12px;
    border-radius: 0 0 20px 20px;
    padding: 10px 14px;
  }

  .mh-brand-logo {
    height: 46px;
  }

  .mh-hero-grid,
  .mh-catalog-shell,
  .mh-accent-strip,
  .mh-brand-grid,
  .mh-workflow {
    grid-template-columns: 1fr;
  }

  .mh-brand-card-link {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    min-height: 320px;
  }

  .mh-brand-card-media img {
    min-height: 320px;
  }

  .mh-hero h1 {
    font-size: 38px;
    white-space: normal;
  }

  .mh-lede {
    font-size: 17px;
  }

  .mh-search {
    min-height: auto;
  }

  .mh-hero-actions {
    gap: 10px;
  }

  .mh-hero-actions a {
    flex: 1 1 190px;
  }

  .mh-hero-slider {
    min-height: 520px;
  }

  .mh-hero-slide {
    inset: 0;
  }

  .mh-hero-image {
    border-radius: 22px;
  }

  .mh-hero-image::before {
    background:
      linear-gradient(180deg, rgba(249, 250, 252, 0.36), rgba(249, 250, 252, 0.06));
  }

  .mh-accent-strip {
    width: auto;
    margin: 12px auto 0;
  }

  .mh-catalog-shell {
    padding: 18px;
  }

  .mh-brand-catalog-page {
    padding-top: 82px;
  }

  .mh-catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 16px;
    padding: 10px;
  }

  .mh-catalog-toolbar .mh-brand-selector,
  .mh-catalog-toolbar .mh-brand-selector select,
  .mh-catalog-search,
  .mh-toolbar-count,
  .mh-filter-toggle {
    width: 100%;
    max-width: 100%;
  }

  .mh-catalog-toolbar .mh-brand-selector {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .mh-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

.mh-brand-catalog-page .mh-catalog-shell {
    margin-top: 10px;
    padding: 12px;
  }

  .mh-brand-catalog-page .mh-filters {
    display: none;
  }

  .mh-brand-catalog-page.is-filters-open .mh-filters {
    display: grid;
  }

  .mh-workflow {
    padding: 22px;
  }

  .mh-filters {
    position: static;
    max-height: min(680px, calc(100vh - 96px));
  }

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

  .mh-workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-detail-nav,
  .mh-detail-hero,
  .mh-detail-section,
  .mh-detail-cta,
  .mh-detail-loading,
  .mh-not-found {
    padding-right: 18px;
    padding-left: 18px;
  }

  .mh-detail-hero,
  .mh-detail-loading,
  .mh-detail-cta {
    grid-template-columns: 1fr;
  }

  .mh-detail-panel {
    position: static;
  }

  .mh-detail-section,
  .mh-detail-cta {
    margin-right: 18px;
    margin-left: 18px;
  }

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

  .mh-detail-cta > div:last-child {
    justify-content: flex-start;
  }
}

.mh-brand-catalog-page.has-no-useful-filters .mh-catalog-shell {
  grid-template-columns: minmax(0, 1fr);
}

.mh-brand-catalog-page.has-no-useful-filters .mh-filters,
.mh-brand-catalog-page.has-no-useful-filters .mh-filter-toggle {
  display: none;
}

@media (max-width: 640px) {
  .mh-flukso-semantic-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mh-flukso-semantic-item {
    min-height: 54px;
  }

  .mh-top-actions .mh-link {
    display: none;
  }

  .mh-kicker {
    width: 100%;
    line-height: 1.35;
  }

  .mh-hero h1 {
    font-size: 31px;
  }

  .mh-search {
    grid-template-columns: minmax(0, 1fr) 48px;
    border-radius: 22px;
  }

  .mh-search-submit {
    width: 48px;
  }

  .mh-hero-slider {
    min-height: 470px;
  }

  .mh-hero-side-card {
    right: 14px;
    top: 18px;
    width: calc(100% - 28px);
  }

  .mh-slider-controls {
    right: auto;
    bottom: 14px;
    left: 50%;
  }

  .mh-catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mh-brand-selector {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .mh-brand-selector select {
    max-width: 100%;
  }

  .mh-count {
    width: 100%;
    text-align: center;
  }

  .mh-grid {
    --mh-catalog-row-height: 68px;
    grid-template-columns: 1fr;
  }

  .mh-material-card,
  .mh-material-card.is-featured,
  .mh-material-card.is-wide,
  .mh-material-card.is-tall {
    grid-column: span 1;
    grid-row: span 5;
  }

  .mh-card-body {
    right: 10px;
    left: 10px;
  }

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

  .mh-workflow-steps li {
    min-height: 196px;
  }

  .mh-detail-page {
    padding-top: 88px;
    border-radius: 22px;
  }

  .mh-detail-nav {
    padding-top: 16px;
  }

  .mh-breadcrumb {
    width: 100%;
  }

  .mh-detail-hero {
    gap: 14px;
    padding-top: 18px;
  }

  .mh-main-photo {
    aspect-ratio: 0.92 / 1;
    border-radius: 18px;
  }

  .mh-photo-hint {
    right: 10px;
    bottom: 10px;
    left: 10px;
    text-align: center;
  }

  .mh-zoom-loupe {
    display: none;
  }

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

  .mh-variant-strip {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .mh-variant-thumb {
    flex: 0 0 96px;
    scroll-snap-align: start;
  }

  .mh-detail-panel {
    padding: 18px;
  }

  .mh-detail-panel h1 {
    font-size: 30px;
  }

  .mh-section-title {
    display: grid;
  }

  .mh-variant-grid,
  .mh-public-specs,
  .mh-character-grid,
  .mh-benefit-grid,
  .mh-related-grid {
    grid-template-columns: 1fr;
  }

  .mh-benefit-grid[data-benefit-count] {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .mh-document-list article,
  .mh-detail-cta > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .mh-document-copy {
    width: 100%;
    flex: 0 1 auto;
  }

  .mh-selection-panel {
    inset: 8px;
    width: auto;
    border-radius: 20px;
    padding: 18px;
  }

  .mh-selection-head h2,
  .mh-selection-success h2 {
    font-size: 25px;
  }

  .mh-selection-item {
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: start;
  }

  .mh-selection-thumb {
    width: 74px;
  }

  .mh-selection-remove {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .mh-selection-actions button {
    flex: 1 1 180px;
  }

  .mh-selection-actions a {
    flex: 1 1 180px;
  }

  .mh-selection-share-hero {
    padding: 28px 18px 18px;
  }

  .mh-selection-share-hero h1 {
    font-size: 30px;
  }

  .mh-public-selection-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 22px;
  }

  .mh-document-list a,
  .mh-detail-cta button {
    width: 100%;
    text-align: center;
  }

  .mh-document-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .mh-lightbox {
    padding: 14px;
  }

  .mh-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .mh-lightbox-nav {
    width: 42px;
    height: 54px;
  }
}

.mh-mobile-appbar,
.mh-mobile-menu,
.mh-mobile-hero-media,
.mh-mobile-hero-copy,
.mh-mobile-detail-article,
.mh-filter-backdrop,
.mh-filter-apply {
  display: none;
}

.mh-sheet-body {
  min-height: 0;
}

@media (max-width: 980px) {
  .mh-about-hero,
  .mh-about-projects {
    grid-template-columns: 1fr;
  }

  .mh-about-hero-media {
    max-width: 720px;
  }

  .mh-about-audience-grid,
  .mh-about-process-list {
    grid-template-columns: 1fr;
  }

  .mh-about-process-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    border-top-width: 1px;
    padding: 18px 0 0;
  }

  .mh-about-process-list h3 {
    margin-top: 0;
  }

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

@media (min-width: 768px) {
  .mh-selection-panel > .mh-sheet-body:not(.mh-selection-success),
  .mh-request-panel > .mh-sheet-body:not(.mh-selection-success) {
    display: contents;
  }
}

@media (max-width: 767px), (pointer: coarse) and (max-height: 500px) {
  :root {
    --mh-mobile-header-height: calc(56px + env(safe-area-inset-top, 0px));
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  html.mh-overlay-open,
  body.mh-overlay-open,
  body.mh-mobile-menu-open,
  body.mh-filters-open,
  body.mh-selection-open,
  body.mh-request-open,
  body.mh-lightbox-open {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  button,
  a,
  input,
  select,
  textarea,
  summary {
    touch-action: manipulation;
  }

  :where(button, a, input, select, textarea, summary):focus-visible {
    outline: 3px solid rgba(95, 86, 172, 0.5);
    outline-offset: 2px;
  }

  .mh-page {
    width: 100%;
    min-height: 100svh;
    padding: var(--mh-mobile-header-height) 0 env(safe-area-inset-bottom, 0px);
  }

  .mh-about-page {
    width: 100%;
    padding-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mh-about-hero,
  .mh-about-section,
  .mh-about-metrics,
  .mh-about-final-cta {
    width: calc(100% - 32px);
  }

  .mh-about-hero {
    gap: 25px;
    padding: 38px 0 48px;
  }

  .mh-about-hero h1 {
    font-size: clamp(27px, 7.1vw, 29px);
    line-height: 1.06;
  }

  .mh-about-hero-copy > p:not(.mh-kicker) {
    font-size: 15px;
    line-height: 1.65;
  }

  .mh-about-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mh-about-actions a,
  .mh-about-actions button,
  .mh-about-final-cta button {
    width: 100%;
    max-width: none;
    min-height: 52px;
  }

  .mh-about-hero-media img {
    height: 250px;
    object-position: 58% 48%;
  }

  .mh-about-section {
    padding: 50px 0;
  }

  .mh-about-positioning,
  .mh-about-process {
    padding-top: 36px;
  }

  .mh-about-section-heading h2,
  .mh-about-final-cta h2 {
    font-size: clamp(25px, 6.5vw, 31px);
    line-height: 1.08;
  }

  .mh-about-value-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .mh-about-value-grid article,
  .mh-about-audience-grid article {
    padding: 22px;
  }

  .mh-about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-about-metrics article {
    min-height: 158px;
    padding: 16px 17px;
  }

  .mh-about-metric-content {
    grid-template-rows: minmax(58px, auto) minmax(4.2em, auto);
    gap: 8px;
  }

  .mh-about-metrics strong {
    min-height: 0;
    font-size: clamp(19px, 5.4vw, 24px);
  }

  .mh-about-metrics span {
    min-height: 0;
    font-size: 11px;
  }

  .mh-about-audience-grid,
  .mh-about-process-list {
    margin-top: 30px;
  }

  .mh-about-projects {
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 54px;
  }

  .mh-about-final-cta {
    gap: 20px;
    margin-bottom: 16px;
    border-radius: 20px;
    padding: 24px 20px;
  }

  .mh-about-final-action small {
    text-align: left;
  }

  .mh-topbar {
    display: none;
  }

  .mh-mobile-appbar {
    position: fixed;
    z-index: 95;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    width: 100%;
    height: var(--mh-mobile-header-height);
    border-bottom: 1px solid rgba(207, 212, 222, 0.82);
    background: rgba(255, 255, 255, 0.94);
    padding: env(safe-area-inset-top, 0px) 10px 0 12px;
    box-shadow: 0 8px 24px rgba(31, 35, 43, 0.09);
    backdrop-filter: blur(18px) saturate(1.08);
  }

  .mh-mobile-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    min-height: 44px;
  }

  .mh-mobile-logo img {
    display: block;
    width: auto;
    max-width: 142px;
    height: 38px;
    object-fit: contain;
  }

  .mh-mobile-selection,
  .mh-mobile-menu-button {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(207, 212, 222, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #363c48;
    padding: 0;
  }

  .mh-mobile-selection {
    position: relative;
    grid-template-columns: 20px auto;
    gap: 4px;
    min-width: 52px;
    border-color: rgba(144, 136, 216, 0.3);
    background: rgba(239, 237, 255, 0.82);
    color: #6259b0;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 900;
  }

  .mh-mobile-selection svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mh-mobile-menu-button {
    align-content: center;
    gap: 4px;
    border-radius: 13px;
  }

  .mh-mobile-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mh-mobile-menu:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: block;
  }

  .mh-mobile-menu-backdrop,
  .mh-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(25, 29, 37, 0.4);
    backdrop-filter: blur(8px);
  }

  .mh-mobile-menu-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: min(85dvh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px 24px 0 0;
    background: #f8f9fb;
    padding: 10px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -24px 70px rgba(31, 35, 43, 0.2);
  }

  .mh-mobile-sheet-head {
    position: sticky;
    z-index: 2;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-bottom: 1px solid rgba(221, 225, 232, 0.86);
    background: rgba(248, 249, 251, 0.97);
    padding: 10px 0;
  }

  .mh-mobile-sheet-head strong {
    font-size: 19px;
  }

  .mh-mobile-sheet-head button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(207, 212, 222, 0.9);
    border-radius: 999px;
    background: #fff;
    color: #3c424f;
    font-size: 25px;
  }

  .mh-mobile-menu-panel nav {
    display: grid;
    gap: 7px;
    padding-top: 10px;
  }

  .mh-mobile-menu-panel nav a,
  .mh-mobile-menu-panel nav button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(221, 225, 232, 0.88);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    color: #252a34;
    padding: 10px 13px;
    font-size: 15px;
    font-weight: 820;
    text-align: left;
  }

  .mh-mobile-menu-panel nav button:last-child {
    border-color: rgba(144, 136, 216, 0.4);
    background: linear-gradient(135deg, #8f86d8, #a69fde);
    color: #fff;
  }

  .mh-hero {
    width: 100%;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding-top: 0;
    box-shadow: none;
  }

  .mh-hero-grid {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(280px, 42svh, 320px);
    min-height: 0;
    padding: 0;
  }

  .mh-mobile-hero-media {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #dfe3e9;
  }

  .mh-mobile-hero-media::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(246, 247, 250, 0.98) 0%, rgba(246, 247, 250, 0.9) 47%, rgba(246, 247, 250, 0.18) 100%),
      linear-gradient(0deg, rgba(246, 247, 250, 0.88), transparent 48%);
    content: "";
  }

  .mh-mobile-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 44%;
  }

  .mh-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    gap: 9px;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 22px 15px 18px;
  }

  .mh-hero-copy > .mh-kicker,
  .mh-desktop-hero-copy,
  .mh-hero-slider {
    display: none !important;
  }

  .mh-mobile-hero-copy {
    display: inline;
  }

  .mh-hero h1 {
    max-width: 275px;
    font-size: clamp(27px, 7.5vw, 31px);
    line-height: 1.02;
    white-space: normal;
  }

  .mh-lede {
    max-width: 260px;
    margin: 0;
    color: #535b69;
    font-size: 14px;
    font-weight: 680;
    line-height: 1.35;
  }

  .mh-search {
    grid-template-columns: minmax(0, 1fr) 46px;
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 12px 30px rgba(31, 35, 43, 0.12);
  }

  .mh-search input {
    min-height: 44px;
    padding-right: 8px;
    padding-left: 48px;
    font-size: 16px;
  }

  .mh-search label::before {
    left: 15px;
  }

  .mh-search label::after {
    top: 29px;
    left: 29px;
  }

  .mh-search-submit {
    width: 46px;
    min-height: 44px;
  }

  .mh-search-suggestions {
    right: 0;
    left: 0;
    max-height: min(48dvh, 320px);
  }

  .mh-canonical-panel,
  .mh-canonical-panel.is-compact {
    width: calc(100% - 30px);
    margin: 20px auto 38px;
    border-radius: 18px;
    padding: 18px;
  }

  .mh-global-search-page .mh-canonical-panel {
    width: 100%;
    margin: 10px 0 0;
  }

  .mh-canonical-heading,
  .mh-canonical-heading.is-compact {
    gap: 9px;
    margin-bottom: 17px;
  }

  .mh-canonical-heading h2 {
    overflow-wrap: anywhere;
    font-size: 24px;
  }

  .mh-canonical-heading.is-compact h2 {
    font-size: 23px;
  }

  .mh-canonical-heading > p {
    font-size: 13px;
    line-height: 1.5;
  }

  .mh-canonical-heading > p br {
    display: none;
  }

  .mh-canonical-groups {
    gap: 12px;
  }

  .mh-canonical-group {
    width: 100%;
    padding: 13px;
  }

  .mh-canonical-options {
    gap: 8px;
  }

  .mh-canonical-toggle {
    min-height: 46px;
    max-width: 100%;
    padding: 8px 11px;
  }

  .mh-canonical-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .mh-canonical-reset,
  .mh-canonical-submit {
    width: 100%;
    min-height: 48px;
  }

  .mh-canonical-status {
    text-align: left;
  }

  .mh-canonical-selected {
    max-width: 100%;
    overflow: hidden;
  }

  .mh-canonical-chip {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .mh-global-search-count {
    margin: 10px 2px 0;
  }

  .mh-empty-actions,
  .mh-zero-filter-actions,
  .mh-canonical-unavailable-actions {
    width: 100%;
  }

  .mh-empty-actions button,
  .mh-empty-actions a,
  .mh-zero-filter-actions button,
  .mh-canonical-unavailable-actions button {
    width: 100%;
  }

  .mh-brand-landing {
    width: 100%;
    margin: 0;
    padding: 22px 0 26px;
  }

  .mh-brand-landing .mh-section-title {
    margin: 0 15px 18px;
  }

  .mh-brand-landing .mh-section-title h2 {
    font-size: 24px;
  }

  .mh-brand-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 14px;
    width: 100%;
    padding: 2px 15px 12px;
  }

  .mh-brand-card {
    width: 100%;
  }

  .mh-brand-card-link {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    border-radius: 16px;
  }

  .mh-brand-card-media,
  .mh-brand-card-media img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }

  .mh-brand-card[data-brand-slug="alessandro-bini"] .mh-brand-card-media img {
    transform: scale(2.12);
    transform-origin: 5% center;
  }

  .mh-brand-card[data-brand-slug="alessandro-bini"] .mh-brand-card-link:hover .mh-brand-card-media img,
  .mh-brand-card[data-brand-slug="alessandro-bini"] .mh-brand-card-link:focus-visible .mh-brand-card-media img {
    transform: scale(2.18);
  }

  .mh-brand-card-body {
    gap: 10px;
    min-width: 0;
    padding: 20px;
  }

  .mh-brand-card-category {
    font-size: 0.72rem;
  }

  .mh-brand-card-name {
    overflow-wrap: anywhere;
    font-size: 30px;
    line-height: 1;
  }

  .mh-brand-wordmark {
    width: min(100%, 300px);
    min-height: 82px;
  }

  .mh-brand-wordmark-text {
    padding: 0 24px;
    font-size: clamp(1.72rem, 9vw, 2.2rem);
  }

  .mh-brand-card-tagline {
    margin-top: -5px;
    font-size: 0.88rem;
  }

  .mh-brand-card-description {
    font-size: 0.93rem;
  }

  .mh-brand-card-count {
    font-size: 0.82rem;
  }

  .mh-brand-card-cta {
    width: 100%;
    min-height: 44px;
    padding: 9px 11px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .mh-brand-section-lede {
    font-size: 0.92rem;
  }

  .mh-workflow {
    display: block;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    padding: 22px 0 26px;
  }

  .mh-workflow-copy {
    gap: 8px;
    padding: 0 15px 12px;
  }

  .mh-workflow-copy .mh-kicker,
  .mh-workflow-copy p:not(.mh-kicker),
  .mh-workflow-cta,
  .mh-workflow-steps p {
    display: none;
  }

  .mh-workflow-copy h2 {
    font-size: 24px;
  }

  .mh-workflow-steps {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 15px 12px;
    scroll-padding-inline: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mh-workflow-steps li {
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 8px;
    width: 142px;
    min-width: 142px;
    min-height: 154px;
    flex: 0 0 142px;
    border-radius: 16px;
    padding: 12px;
    scroll-snap-align: start;
  }

  .mh-workflow-icon-shell {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .mh-workflow-icon {
    width: 46px;
    height: 46px;
  }

  .mh-workflow-steps strong {
    font-size: 13px;
  }

  .mh-brand-catalog-page,
  .mh-global-search-page,
  .mh-detail-page {
    width: 100%;
    min-height: calc(100svh - var(--mh-mobile-header-height));
    border: 0;
    border-radius: 0;
    padding-top: 10px;
    box-shadow: none;
  }

  .mh-catalog-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: calc(100% - 20px);
    border-radius: 16px;
    padding: 9px;
  }

  .mh-catalog-toolbar > [data-brand-selector-root] {
    min-width: 0;
  }

  .mh-catalog-toolbar .mh-brand-selector {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 5px;
    width: 100%;
    min-height: 44px;
    padding: 5px 7px;
  }

  .mh-catalog-toolbar .mh-brand-selector select {
    width: 100%;
    min-height: 34px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .mh-catalog-search {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 52px;
  }

  .mh-toolbar-count {
    grid-column: 1;
    grid-row: 3;
    width: auto;
    min-height: 44px;
    padding: 7px 10px;
    font-size: 12px;
    text-align: left;
  }

  .mh-filter-toggle {
    grid-column: 2;
    grid-row: 3;
    width: auto;
    min-width: 92px;
    min-height: 44px;
  }

  .mh-brand-catalog-page .mh-catalog-shell {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto 0;
    border-radius: 16px;
    padding: 10px;
  }

  .mh-brand-catalog-page .mh-filters,
  .mh-brand-catalog-page.is-filters-open .mh-filters {
    position: fixed;
    z-index: 132;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    max-height: 85dvh;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -24px 70px rgba(31, 35, 43, 0.22);
  }

  .mh-brand-catalog-page.is-filters-open .mh-filters {
    display: grid;
  }

  .mh-brand-catalog-page.is-filters-open .mh-filter-backdrop:not([hidden]) {
    z-index: 131;
    display: block;
  }

  .mh-filter-head {
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 54px;
    background: rgba(255, 255, 255, 0.96);
    padding: 4px 2px 10px;
  }

  .mh-filter-head button,
  .mh-filter-option,
  .mh-filter-group summary {
    min-height: 44px;
  }

  .mh-filter-scroll {
    padding-right: 2px;
  }

  .mh-filter-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: #17231f;
    color: #fff;
    padding: 10px 14px;
    font-weight: 860;
  }

  .mh-filter-apply:disabled {
    opacity: 0.66;
  }

  .mh-active-filters {
    max-width: 100%;
    overflow: hidden;
  }

  .mh-global-search-page {
    padding: 10px;
  }

  .mh-global-search-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    border-radius: 16px;
    padding: 10px;
  }

  .mh-global-search-head h1 {
    display: none;
  }

  .mh-global-search-head > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
  }

  .mh-global-search-head p:not(.mh-kicker),
  .mh-global-search-head strong {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 12px;
  }

  .mh-global-search-results {
    margin-top: 10px;
  }

  .mh-detail-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    min-height: 54px;
    padding: 6px 14px 0;
  }

  .mh-breadcrumb {
    display: none;
  }

  .mh-detail-back {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    min-height: 44px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mh-mobile-detail-article {
    display: block;
    min-width: 0;
    max-width: 42%;
    overflow: hidden;
    color: #6c7483;
    font-size: 11px;
    font-weight: 850;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mh-detail-sequence {
    order: 3;
    justify-content: center;
    width: 100%;
    margin-left: 0;
    border-top: 1px solid rgba(207, 212, 222, 0.72);
    padding-top: 8px;
  }

  .mh-detail-sequence-button {
    min-width: 48px;
    min-height: 46px;
    padding: 0 12px;
  }

  .mh-detail-sequence-copy {
    display: none;
  }

  .mh-detail-position {
    min-width: 90px;
  }

  .mh-detail-hero {
    gap: 10px;
    padding: 10px;
  }

  .mh-detail-gallery {
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    padding: 8px;
  }

  .mh-main-photo {
    width: 100%;
    height: clamp(280px, 52svh, 480px);
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 15px;
    background: #f3f5f8;
    contain: layout paint;
  }

  .mh-main-photo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .mh-main-photo::after,
  .mh-zoom-loupe {
    display: none;
  }

  .mh-photo-hint {
    right: 9px;
    bottom: 9px;
    left: auto;
    max-width: calc(100% - 18px);
    text-align: right;
  }

  .mh-thumbs,
  .mh-variant-strip {
    display: flex;
    grid-template-columns: none;
    gap: 9px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    padding: 3px 2px 10px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mh-thumbs button {
    width: 86px;
    min-width: 86px;
    min-height: 68px;
    flex: 0 0 86px;
    scroll-snap-align: start;
  }

  .mh-variant-thumb {
    width: 94px;
    min-width: 94px;
    min-height: 82px;
    flex: 0 0 94px;
    scroll-snap-align: start;
  }

  .mh-detail-panel {
    gap: 14px;
    min-width: 0;
    border-radius: 18px;
    padding: 16px;
  }

  .mh-detail-panel h1 {
    overflow-wrap: anywhere;
    font-size: clamp(26px, 7vw, 28px);
  }

  .mh-detail-meta,
  .mh-detail-badges,
  .mh-selection-context {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .mh-detail-meta span,
  .mh-detail-badges span,
  .mh-selected-variant,
  .mh-public-price {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .mh-public-specs,
  .mh-character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-public-specs strong,
  .mh-character-grid strong,
  .mh-document-list strong,
  .mh-document-list span,
  .mh-selection-title,
  .mh-selection-meta span {
    overflow: visible;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
  }

  .mh-detail-actions button,
  .mh-detail-cta button,
  .mh-detail-primary,
  .mh-document-list a {
    width: 100%;
    min-height: 48px;
  }

  .mh-document-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .mh-detail-section,
  .mh-detail-cta {
    min-width: 0;
    margin: 10px;
    border-radius: 18px;
    padding: 16px;
  }

  .mh-detail-section .mh-section-title {
    margin-bottom: 14px;
  }

  .mh-section-title h2,
  .mh-detail-cta h2 {
    overflow-wrap: anywhere;
    font-size: 23px;
  }

  .mh-benefit-grid,
  .mh-related-grid {
    grid-template-columns: 1fr;
  }

  .mh-benefit-grid[data-benefit-count] {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .mh-document-list article,
  .mh-detail-cta,
  .mh-detail-cta > div:last-child {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
    width: 100%;
  }

  .mh-document-copy {
    width: 100%;
    flex: 0 1 auto;
  }

  .mh-lightbox {
    width: 100%;
    height: 100dvh;
    z-index: 150;
    overflow: visible;
    padding: calc(60px + env(safe-area-inset-top, 0px)) 10px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .mh-lightbox img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 14px;
    object-fit: contain;
  }

  .mh-lightbox-close {
    position: fixed;
    z-index: 160;
    top: calc(10px + env(safe-area-inset-top));
    right: calc(10px + env(safe-area-inset-right));
    display: grid !important;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(17, 20, 27, 0.82);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mh-selection-drawer,
  .mh-request-drawer {
    width: 100%;
    height: 100dvh;
    inset: 0;
  }

  .mh-selection-panel,
  .mh-request-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    padding: env(safe-area-inset-top, 0px) 0 env(safe-area-inset-bottom, 0px);
  }

  .mh-selection-close {
    z-index: 5;
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .mh-selection-head {
    position: relative;
    z-index: 3;
    gap: 5px;
    min-height: 68px;
    border-bottom: 1px solid rgba(221, 225, 232, 0.9);
    background: rgba(255, 255, 255, 0.96);
    padding: 12px 64px 11px 14px;
  }

  .mh-selection-head .mh-kicker {
    display: none;
  }

  .mh-selection-head h2,
  .mh-selection-success h2 {
    font-size: 25px;
  }

  .mh-sheet-body,
  .mh-selection-panel > .mh-sheet-body:not(.mh-selection-success),
  .mh-request-panel > .mh-sheet-body:not(.mh-selection-success) {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 12px calc(14px + env(safe-area-inset-bottom, 0px));
    scroll-padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .mh-selection-success.mh-sheet-body {
    align-content: center;
    padding-top: calc(68px + env(safe-area-inset-top, 0px));
  }

  .mh-selection-list {
    overflow: visible;
  }

  .mh-selection-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
  }

  .mh-selection-remove {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .mh-selection-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mh-selection-actions a,
  .mh-selection-actions button,
  .mh-selection-empty button {
    width: 100%;
    min-height: 48px;
  }

  .mh-selection-form {
    min-width: 0;
    padding-bottom: 0;
  }

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

  .mh-selection-form input,
  .mh-selection-form textarea,
  .mh-request-file-picker input {
    min-height: 46px;
    font-size: 16px;
  }

  .mh-selection-submit {
    position: sticky;
    z-index: 4;
    bottom: 0;
    min-height: 50px;
    border-radius: 14px;
    box-shadow: 0 -8px 24px rgba(246, 247, 250, 0.94), 0 14px 28px rgba(144, 136, 216, 0.22);
  }

  .mh-request-material {
    min-width: 0;
  }

  .mh-request-file-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mh-request-file-row span {
    width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .mh-request-file-row button {
    width: 100%;
    min-height: 44px;
  }

  .mh-selection-share-page {
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .mh-selection-share-hero {
    padding: 20px 14px 14px;
  }

  .mh-selection-share-hero h1 {
    overflow-wrap: anywhere;
    font-size: 28px;
  }

  .mh-public-selection-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 10px 20px;
  }

  .mh-public-selection-card,
  .mh-public-selection-body {
    min-width: 0;
  }
}

@media (max-width: 767px), (pointer: coarse) and (max-height: 500px) {
  .mh-selection-sheet-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: #f5f6f9;
  }

  .mh-selection-sheet-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    border-bottom: 1px solid #dde1e8;
    background: #fff;
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
  }

  .mh-selection-sheet-header > div {
    gap: 0;
  }

  .mh-selection-sheet-header .mh-kicker {
    display: none;
  }

  .mh-selection-sheet-header h2 {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 24px;
    line-height: 1.15;
  }

  .mh-selection-sheet-header .mh-selection-close {
    position: static;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-color: #d6dbe4;
    background: #fff;
  }

  .mh-selection-sheet-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #f5f6f9;
    padding: 16px 16px calc(28px + env(safe-area-inset-bottom));
    scroll-padding-top: 16px;
    scroll-padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .mh-selection-sheet-body .mh-selection-list {
    display: grid;
    flex: 0 0 auto;
    gap: 12px;
    min-width: 0;
    min-height: auto;
    overflow: visible;
    padding: 0;
  }

  .mh-selection-sheet-body .mh-selection-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    overflow: hidden;
    border-color: #dfe3e9;
    background: #fff;
    padding: 10px;
  }

  .mh-selection-sheet-body .mh-selection-thumb {
    width: 72px;
    min-width: 0;
  }

  .mh-selection-sheet-body .mh-selection-info,
  .mh-selection-sheet-body .mh-selection-title-row,
  .mh-selection-sheet-body .mh-selection-meta,
  .mh-selection-sheet-body .mh-selection-title-row span,
  .mh-selection-sheet-body .mh-selection-title-row b,
  .mh-selection-sheet-body .mh-selection-meta span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .mh-selection-sheet-body .mh-selection-title {
    overflow: visible;
    overflow-wrap: anywhere;
    text-overflow: clip;
  }

  .mh-selection-sheet-body .mh-selection-title-row,
  .mh-selection-sheet-body .mh-selection-meta {
    align-items: flex-start;
  }

  .mh-selection-sheet-body .mh-selection-remove {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    margin: 0;
    transform: none;
    background: #fff;
  }

  .mh-selection-secondary-actions {
    position: static;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    transform: none;
  }

  .mh-selection-secondary-actions button {
    position: static;
    flex: 0 0 auto;
    width: 100%;
    min-height: 48px;
    margin: 0;
    transform: none;
    border-color: #d6dbe4;
    background: #fff;
  }

  .mh-selection-sheet-body .mh-selection-form {
    flex: 0 0 auto;
    gap: 12px;
    min-width: 0;
    border: 1px solid #dfe3e9;
    border-radius: 18px;
    background: #fff;
    padding: 16px;
  }

  .mh-selection-sheet-body .mh-selection-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mh-selection-sheet-body .mh-selection-form input,
  .mh-selection-sheet-body .mh-selection-form textarea,
  .mh-selection-sheet-body .mh-selection-form-error {
    min-width: 0;
    max-width: 100%;
    background-color: #fff;
  }

  .mh-selection-sheet-body .mh-selection-form textarea {
    resize: vertical;
  }

  .mh-selection-sheet-footer {
    position: sticky;
    z-index: 3;
    bottom: 0;
    display: block;
    flex: 0 0 auto;
    border-top: 1px solid #d9dee7;
    background: #fff;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 30px rgba(31, 35, 43, 0.1);
  }

  .mh-selection-sheet-footer .mh-selection-submit {
    position: static;
    width: 100%;
    min-height: 52px;
  }

  .mh-selection-sheet-body .mh-selection-empty {
    flex: 1 0 auto;
    min-width: 0;
    min-height: 260px;
    background: #fff;
  }

  .mh-selection-sheet-success-panel .mh-selection-success {
    min-height: 100%;
    padding-right: 0;
  }

  .mh-selection-sheet-success-panel .mh-selection-actions a,
  .mh-selection-sheet-success-panel .mh-selection-actions button {
    width: 100%;
    min-height: 48px;
    background: #fff;
  }
}

@media (pointer: coarse) and (max-height: 500px) {
  .mh-selection-sheet-footer {
    position: static;
  }

  .mh-selection-sheet-body {
    scroll-padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

.mh-segment-scale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mh-segment-scale {
  min-width: 0;
  border: 1px solid #e4ddd5;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.mh-segment-scale-heading {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mh-segment-scale-heading span {
  min-width: 0;
  color: #4b4038;
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.mh-segment-scale-heading strong {
  flex: 0 0 auto;
  color: #70462a;
  font-size: 14px;
}

.mh-segment-scale-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.mh-segment-scale-track > span {
  height: 8px;
  border-radius: 999px;
  background: #e7dfd7;
}

.mh-segment-scale-track > span.is-filled {
  background: #9c5b32;
}

@media (max-width: 760px) {
  .mh-segment-scale-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mh-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 10px 0 4px;
  font-size: 14px;
}

.mh-seo-links:empty { display: none; }

.mh-seo-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
