/* ============================================================
   MyHair.dk — full custom theme layer
   Pink + plum + lime palette · Matas density · AB footer
   ============================================================ */

:root {
  --mh-primary: #FF3D9A;
  --mh-primary-deep: #E0257E;
  --mh-primary-soft: #FFD8EC;
  --mh-plum: #0F0F0F;
  --mh-plum-soft: #4A4A4A;
  --mh-lilac: #F2E2FF;
  --mh-rose: #FFE8F1;
  --mh-cream: #FCF8FB;
  --mh-mint: #D6F4EA;
  --mh-peach: #FFEAD9;
  --mh-lime: #B9FC8F;
  --mh-lime-deep: #0AB88E;
  --mh-orange: #FC5C00;
  --mh-ink: #0F0F0F;
  --mh-muted: #6B6B6B;
  --mh-soft: #A8A8A8;
  --mh-border: #F0E0EA;
  --mh-line: #F6E8F0;
  --mh-yellow: #FFC700;
  --mh-tp-green: #00B67A;

  --mh-font-heading: "Bricolage Grotesque", "Neue Haas Display", system-ui, sans-serif;
  --mh-font-body: "Neue Haas Display", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --bs-primary: #FF3D9A;
  --bs-primary-rgb: 255, 61, 154;
  --bs-body-color: #2A1124;
  --bs-body-bg: #FFFFFF;
  --bs-body-font-family: var(--mh-font-body);
  --bs-body-font-size: 15.5px;
  --bs-body-line-height: 1.55;
  --bs-link-color: #E0257E;
  --bs-link-hover-color: #0F0F0F;
  --bs-border-color: #F0E0EA;
  --bs-border-radius: 12px;
}

/* ---------- Base ---------- */

html { scroll-behavior: smooth; }

html,
body {
  font-family: var(--mh-font-body);
  color: var(--mh-ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15.5px;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: var(--mh-font-heading);
  color: var(--mh-plum);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p { line-height: 1.6; }

a { color: var(--mh-primary-deep); text-decoration: none; }
a:hover { color: var(--mh-plum); }

img { max-width: 100%; height: auto; }

button { font-family: inherit; }

/* ---------- Buttons ---------- */

.btn {
  font-family: var(--mh-font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.005em;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn-primary,
.btn-primary:focus {
  background-color: var(--mh-primary);
  border-color: var(--mh-primary);
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: var(--mh-primary-deep);
  border-color: var(--mh-primary-deep);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--mh-plum);
  color: var(--mh-plum);
}

.btn-secondary:hover {
  background: var(--mh-plum);
  border-color: var(--mh-plum);
  color: #FFFFFF;
}

/* ============================================================
   HEADER (static — floating pill takes over on scroll)
   ============================================================ */

#header.header {
  position: relative;
  z-index: 50;
  background: #FFFFFF;
}

/* ============================================================
   FLOATING FROSTED PILL HEADER (scroll-up reveal)
   ============================================================ */

.mh-floating {
  position: fixed;
  top: 0.85rem;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  transform: translateY(calc(-100% - 2rem));
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
  opacity: 0;
  padding: 0 1.25rem;
}

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

.mh-floating__pill {
  pointer-events: auto;
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 32px rgba(15, 15, 15, 0.10),
    0 0 0 1px rgba(15, 15, 15, 0.05);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.55rem 0.85rem 0.55rem 1.25rem;
}

.mh-floating__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.mh-floating__brand img {
  height: 32px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.mh-floating__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  overflow: hidden;
}

.mh-floating__nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background-color .15s ease, color .15s ease;
  white-space: nowrap;
}

.mh-floating__nav a:hover { background: rgba(15, 15, 15, 0.06); }

.mh-floating__nav--accent { color: var(--mh-primary-deep) !important; }

.mh-floating__icons {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

.mh-floating__icons a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--mh-plum);
  text-decoration: none;
  transition: background-color .15s ease;
}

.mh-floating__icons a:hover { background: rgba(15, 15, 15, 0.06); }
.mh-floating__icons i { font-size: 19px; line-height: 1; }

.mh-floating__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--mh-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
  border: 1.5px solid #FFFFFF;
}

@media (max-width: 900px) {
  .mh-floating__nav a:nth-child(n+5) { display: none; }
  .mh-floating__pill { gap: 0.75rem; padding-left: 0.85rem; }
}

@media (max-width: 600px) {
  .mh-floating__nav { display: none; }
  .mh-floating__pill { grid-template-columns: auto auto; justify-content: space-between; }
}

/* ============================================================
   TOP BAR (bm_topbanner) — promo left + utility links right
   ============================================================ */

#bm-topbanner .bm-topbanner__item { padding: 0 !important; }
#bm-topbanner .bm-topbanner__content { padding: 0; }

.bm-tb-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0.3rem 1.5rem;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.bm-tb-left { display: inline-flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; }

.bm-tb-sep { opacity: 0.4; }

.bm-tp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.bm-tp:hover { opacity: 0.85; color: inherit; }

.bm-tp__label { color: #FFFFFF; font-weight: 700; }
.bm-tp__star { color: #00B67A; font-size: 13px; line-height: 1; }
.bm-tp__brand { color: #FFFFFF; font-weight: 700; }

.bm-tb-right { display: inline-flex; align-items: center; gap: 1.5rem; }
.bm-tb-right a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .15s ease;
}
.bm-tb-right a:hover { opacity: 1; }

@media (max-width: 760px) {
  .bm-tb-wrap { flex-direction: column; gap: 0.4rem; padding: 0.5rem 1rem; }
  .bm-tb-right { gap: 1rem; font-size: 11.5px; }
}

/* ============================================================
   HEADER (logo + search + icons + mega nav)
   ============================================================ */

.mh-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--mh-line);
}

.mh-header__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 2.5rem;
  align-items: center;
}

.mh-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.mh-header__brand-img {
  height: 58px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.mh-header__search-modal { display: contents; }
.mh-header__search-modal .bm-search-trigger { display: none; }

.mh-header__brand-mark { color: var(--mh-plum); }
.mh-header__brand-dot { color: var(--mh-primary); font-size: 28px; margin-left: 1px; line-height: 0.7; }

.mh-header__search {
  position: relative;
  display: flex;
  align-items: center;
  background: #EBEBEB;
  border: 0;
  border-radius: 999px;
  padding: 0 0.5rem 0 1.35rem;
  height: 49px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  transition: background-color .18s ease;
  cursor: text;
}

.mh-header__search:hover { background: #E4E1DA; }
.mh-header__search:focus-within { background: #FFFFFF; box-shadow: 0 0 0 2px var(--mh-ink); }

.mh-header__search-icon {
  width: 16px;
  height: 16px;
  font-size: 18px;
  color: var(--mh-muted);
  flex-shrink: 0;
}

.mh-header__search-input {
  flex: 1;
  border: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  padding: 0.6rem 0.75rem;
  font-size: 14px;
  color: var(--mh-plum);
  outline: none !important;
  min-width: 0;
  height: 100%;
  box-shadow: none !important;
}
.mh-header__search-input:focus,
.mh-header__search-input:active,
.mh-header__search-input:hover {
  background: transparent !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.mh-header__search-input::placeholder { color: var(--mh-muted); font-weight: 400; }

.mh-header__search-submit { display: none; }

.mh-header__icons {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.mh-header__icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  color: var(--mh-plum);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color .15s ease;
}

.mh-header__icon-btn:hover {
  background: var(--mh-cream);
}

.mh-header__icon-btn svg,
.mh-header__icon-btn i {
  width: 26px;
  height: 26px;
  font-size: 22px;
  line-height: 1;
}
.mh-header__icon-btn .mh-header__icon { stroke-width: 10; }

.mh-header__icon-label { display: none; }

.mh-header__icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--mh-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding-inline: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFFFFF;
}

.mh-header__icon-badge--cart { background: var(--mh-plum); }

.mh-header__mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--mh-plum);
  padding: 0.5rem;
  cursor: pointer;
}

.mh-header__mobile-toggle svg,
.mh-header__mobile-toggle i { width: 26px; height: 26px; font-size: 26px; line-height: 1; }

/* ---------- Mega nav ---------- */

.mh-nav {
  background: #FFFFFF;
  border-bottom: 1px solid var(--mh-line);
}

.mh-nav__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mh-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mh-nav__item { flex: 0 0 auto; }

.mh-nav__link {
  display: inline-block;
  color: var(--mh-plum);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 0.65rem 0.7rem;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  margin-bottom: -1px;
}

.mh-nav__link:hover {
  color: var(--mh-primary-deep);
  border-color: var(--mh-primary);
}

.mh-nav__item--accent .mh-nav__link {
  color: var(--mh-primary-deep);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .mh-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
  .mh-header__icons { display: none; }
  .mh-header__mobile-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .mh-header__search { display: none; }
  .mh-header__inner { padding: 0.85rem 1rem; }
  .mh-nav { display: none; }
}

/* ============================================================
   PROMO GRID (Matas hero: 1 big + 2 small)
   ============================================================ */

.mh-promo {
  background: #FFFFFF;
  padding: 1.5rem 0 0;
}

.mh-promo__grid {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.mh-promo__big {
  grid-row: span 2;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 460px;
  background-size: cover !important;
  background-position: center !important;
  text-decoration: none;
  color: #FFFFFF;
  display: flex;
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3.5rem);
  isolation: isolate;
}

.mh-promo__big-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  max-width: 540px;
}

.mh-promo__eyebrow {
  font-family: var(--mh-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mh-primary-deep);
}

.mh-promo__eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.mh-promo__big-title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  margin: 0;
  color: #FFFFFF;
  letter-spacing: -0.025em;
}

.mh-promo__big-lede {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  max-width: 44ch;
}

.mh-promo__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: var(--mh-plum);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  align-self: flex-start;
  transition: transform .18s ease, background-color .18s ease;
}

.mh-promo__big:hover .mh-promo__btn { transform: translateX(4px); background: var(--mh-lime); }

.mh-promo__btn--light { background: #FFFFFF; color: var(--mh-plum); }
.mh-promo__btn--ghost { background: var(--mh-plum); color: #FFFFFF; }

.mh-promo__splash {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: #FFFFFF;
  color: var(--mh-primary-deep);
  border-radius: 999px;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--mh-font-heading);
  font-weight: 800;
  text-align: center;
  line-height: 1;
  border: 3px solid var(--mh-primary-deep);
}

.mh-promo__splash > span:first-child {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.mh-promo__splash strong {
  font-size: 2.5rem;
  margin-bottom: 0.1rem;
  font-weight: 800;
}

.mh-promo__splash strong small { font-size: 1.2rem; font-weight: 800; }

.mh-promo__splash > span:last-child {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.mh-promo__small {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mh-promo__small:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(61, 21, 48, 0.14); }

.mh-promo__small--1 { color: #FFFFFF; }
.mh-promo__small--2 { color: var(--mh-plum); }

.mh-promo__small-title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.1;
  margin: 0;
  color: inherit;
  letter-spacing: -0.02em;
}

.mh-promo__small-title em {
  font-style: normal;
  color: var(--mh-primary);
}

.mh-promo__small--1 .mh-promo__small-title em {
  color: var(--mh-primary-soft);
}

@media (max-width: 900px) {
  .mh-promo__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mh-promo__big { grid-row: auto; min-height: 360px; padding: 2rem; }
  .mh-promo__splash { width: 92px; height: 92px; top: 1rem; right: 1rem; }
  .mh-promo__splash strong { font-size: 1.6rem; }
}

/* ============================================================
   PREMIUM REVIEWS SECTION (avatars + product chips)
   ============================================================ */

.mh-reviews-section {
  background: #FAFAFA;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.mh-reviews-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--mh-line);
}

.mh-reviews-section__score {
  text-align: center;
}

.mh-reviews-section__big {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mh-plum);
  display: block;
}

.mh-reviews-section__stars {
  color: var(--mh-tp-green);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 0.35rem 0 0.25rem;
}

.mh-reviews-section__count {
  font-size: 12.5px;
  color: var(--mh-muted);
}

.mh-reviews-section__title-block { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

.mh-reviews-section__brand {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mh-tp-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mh-reviews-section__title {
  font-family: var(--mh-font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--mh-plum);
  line-height: 1.1;
}

.mh-reviews-section__more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 4px;
  align-self: center;
}

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

.mh-reviews-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 1.5rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mh-reviews-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.mh-reviews-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.mh-reviews-card__name { font-weight: 700; font-size: 13.5px; color: var(--mh-plum); }
.mh-reviews-card__meta { font-size: 11.5px; color: var(--mh-muted); }
.mh-reviews-card__stars { color: var(--mh-tp-green); font-size: 14px; letter-spacing: 0.04em; }

.mh-reviews-card__quote {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mh-plum);
  margin: 0;
}

.mh-reviews-card__chip {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mh-plum);
  background: #F4F4F2;
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
  align-self: flex-start;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-reviews-card__verified {
  font-size: 11px;
  color: var(--mh-tp-green);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .mh-reviews-section__head { grid-template-columns: 1fr; text-align: center; }
  .mh-reviews-section__title-block { align-items: center; }
  .mh-reviews-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mh-reviews-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   FULL-WIDTH BANNER (legacy)
   ============================================================ */

.mh-banner {
  display: block;
  width: 100%;
  line-height: 0;
  text-decoration: none;
  background: #F7F7F5;
}

.mh-banner__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   BOOZT-INSPIRED HOMEPAGE BANNERS
   ============================================================ */

:root {
  --bz-max: 1450px;
  --bz-gap: 0.85rem;
  --bz-pad: 1.5rem;
}

/* 1) Wide skinny hero billboard */
.mh-billboard {
  display: block;
  max-width: var(--bz-max);
  margin: 1.5rem auto 1.5rem;
  padding: 0 var(--bz-pad);
  line-height: 0;
  text-decoration: none;
}
.mh-billboard img { width: 100%; height: auto; display: block; border-radius: 2px; }

/* Hero billboard sits on the same 1450px grid as the rest of the page */
.mh-billboard--full {
  max-width: var(--bz-max);
  margin: 1.5rem auto;
  padding: 0 var(--bz-pad);
}
.mh-billboard--full img { border-radius: 8px; }

/* 2/3/7/8/10) Banner grids */
.mh-bzgrid {
  max-width: var(--bz-max);
  margin: 0 auto 1.5rem;
  padding: 0 var(--bz-pad);
  display: grid;
  gap: var(--bz-gap);
}

.mh-bzgrid--4 { grid-template-columns: repeat(4, 1fr); }
.mh-bzgrid--2sq { grid-template-columns: repeat(2, 1fr); }
.mh-bzgrid--3 { grid-template-columns: repeat(3, 1fr); }
.mh-bzgrid--4p { grid-template-columns: repeat(4, 1fr); }
.mh-bzgrid--2ld { grid-template-columns: repeat(2, 1fr); }

.mh-bzgrid__tile {
  display: block;
  position: relative;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #F4F4F2;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease;
}

.mh-bzgrid__tile:hover { transform: translateY(-2px); }

.mh-bzgrid__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
}

.mh-bzgrid__tile:hover img { transform: scale(1.08); }

.mh-bzgrid--4 .mh-bzgrid__tile,
.mh-bzgrid--3 .mh-bzgrid__tile { aspect-ratio: 1 / 1; }

.mh-bzgrid--2sq .mh-bzgrid__tile { aspect-ratio: 2 / 1; }
.mh-bzgrid--2ld .mh-bzgrid__tile { aspect-ratio: 4 / 1; }
.mh-bzgrid--4p .mh-bzgrid__tile { aspect-ratio: 4 / 5; }

/* Pre-composed promo banners (990x570) — match native ratio so the
   baked-in text + CTA are never cropped */
.mh-bzgrid--banners .mh-bzgrid__tile { aspect-ratio: 99 / 57; background: #F4F0EC; }
.mh-bzgrid--banners .mh-bzgrid__tile img { object-fit: cover; }

.mh-bzgrid__tile--portrait .mh-bzgrid__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mh-plum);
  font-weight: 700;
  font-size: 13px;
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
  line-height: 1;
  backdrop-filter: blur(4px);
}

@media (max-width: 1100px) {
  .mh-bzgrid--4, .mh-bzgrid--4p { grid-template-columns: repeat(2, 1fr); }
  .mh-bzgrid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mh-bzgrid--4, .mh-bzgrid--2sq, .mh-bzgrid--4p, .mh-bzgrid--2ld { grid-template-columns: 1fr; }
}

/* Aktuelle kampagner — Coolshop-style 4-up inspiration cards */
.mh-campaigns {
  max-width: var(--bz-max);
  margin: 1.5rem auto 2rem;
  padding: 20px var(--bz-pad) 0;
}

.mh-campaigns__head {
  margin-bottom: 1.25rem;
}

.mh-campaigns__head h2 {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.35rem;
  color: var(--mh-plum);
}

.mh-campaigns__head p {
  font-size: 14.5px;
  color: var(--mh-muted);
  margin: 0;
}

.mh-campaigns__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bz-gap);
}

.mh-campaigns__card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}

.mh-campaigns__card:hover { transform: translateY(-3px); color: inherit; }

.mh-campaigns__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F4F4F2;
}

.mh-campaigns__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
}

.mh-campaigns__card:hover .mh-campaigns__media img { transform: scale(1.09); }

.mh-campaigns__body { padding: 1rem 0 0.5rem; }

.mh-campaigns__eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-primary);
  margin-bottom: 0.45rem;
  display: inline-block;
}

.mh-campaigns__title {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.3rem;
  color: var(--mh-plum);
}

.mh-campaigns__lede {
  font-size: 13.5px;
  color: var(--mh-muted);
  line-height: 1.45;
  margin: 0 0 0.85rem;
}

.mh-campaigns__date {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mh-ink);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1100px) { .mh-campaigns__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .mh-campaigns__grid { grid-template-columns: 1fr; } }

/* 5) Text-link chip strip */
.mh-chiplinks {
  max-width: var(--bz-max);
  margin: 0.5rem auto 2rem;
  padding: 0 var(--bz-pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--bz-gap);
}

.mh-chiplinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  border-radius: 2px;
  background: #F4F4F2;
  color: var(--mh-plum);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background-color .15s ease, color .15s ease;
}

.mh-chiplinks a:hover { background: var(--mh-plum); color: #FFFFFF; }

@media (max-width: 1100px) { .mh-chiplinks { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .mh-chiplinks { grid-template-columns: repeat(2, 1fr); } }

/* 6) Editorial duo — 2-up image cards */
.mh-bzasy {
  max-width: var(--bz-max);
  margin: 0 auto 1.5rem;
  padding: 0 var(--bz-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bz-gap);
  align-items: stretch;
}

.mh-bzasy__card {
  position: relative;
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 395px;
  background: #1A1A1A;
}

.mh-bzasy__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.mh-bzasy__card:hover img { transform: scale(1.04); }

.mh-bzasy__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.75rem;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 75%);
}

.mh-bzasy__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.mh-bzasy__title {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.1;
  margin: 0 0 0.65rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.mh-bzasy__link {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .mh-bzasy { grid-template-columns: 1fr; }
  .mh-bzasy__card { min-height: 280px; aspect-ratio: 16 / 10; }
}

/* 9 / 12) Thin promo strip */
.mh-bzstrip {
  display: block;
  max-width: var(--bz-max);
  margin: 0.5rem auto;
  padding: 0 var(--bz-pad);
  text-decoration: none;
  line-height: 0;
  position: relative;
}

.mh-bzstrip img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.mh-bzstrip__overlay {
  position: absolute;
  inset: 0 var(--bz-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-align: center;
  background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  border-radius: 2px;
}

.mh-bzstrip__overlay strong { font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 0.5rem; }

.mh-bzstrip--thin .mh-bzstrip__solid {
  width: 100%;
  height: 98px;
  background: var(--mh-plum);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  text-align: center;
}

.mh-bzstrip--thin .mh-bzstrip__solid strong { font-weight: 800; margin-right: 0.5rem; }

/* 11) USP service strip */
.mh-bzusp {
  max-width: var(--bz-max);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) var(--bz-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.mh-bzusp__card {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  min-height: 0;
}

.mh-bzusp__card i {
  font-size: 34px;
  line-height: 1;
  color: var(--mh-plum);
  margin-bottom: 0.5rem;
}

.mh-bzusp__card h4 {
  font-family: var(--mh-font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0;
  color: var(--mh-plum);
  margin: 0;
}

.mh-bzusp__card p {
  font-size: 13px;
  color: var(--mh-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 24ch;
}

.mh-bzusp__card a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.2rem;
  align-self: center;
}

@media (max-width: 900px) { .mh-bzusp { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .mh-bzusp { grid-template-columns: 1fr; } }

/* 13) Brand logo grid */
.mh-bzbrands {
  max-width: var(--bz-max);
  margin: 1.5rem auto 3rem;
  padding: 0 var(--bz-pad);
}

.mh-bzbrands__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.mh-bzbrands__head h3 {
  font-family: var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--mh-plum);
}

.mh-bzbrands__head a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mh-bzbrands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--bz-gap);
}

.mh-bzbrands__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 140px;
  padding: 1rem;
  background: #F4F4F2;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color .15s ease;
}

.mh-bzbrands__tile:hover { background: #E8E8E5; }

.mh-bzbrands__logo {
  max-width: 80%;
  max-height: 56px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mh-bzbrands__name {
  font-family: var(--mh-font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--mh-plum);
  letter-spacing: 0.01em;
  text-align: center;
}

@media (max-width: 1100px) { .mh-bzbrands__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .mh-bzbrands__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   ROUND CATEGORY CIRCLES (Matas signature)
   ============================================================ */

.mh-circles {
  background: #FFFFFF;
  padding: 1.6rem 0 1.2rem;
  border-bottom: 0;
}

.mh-circles__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.mh-circles__inner::-webkit-scrollbar { display: none; }

.mh-circles__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--mh-plum);
  transition: transform .2s ease;
  min-width: 0;
}

.mh-circles__item:hover { transform: translateY(-4px); }

.mh-circles__bubble {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: box-shadow .25s ease;
  max-width: 96px;
}

.mh-circles__item:hover .mh-circles__bubble {
  box-shadow: 0 10px 24px rgba(255, 61, 154, 0.20);
}

.mh-circles__bubble img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mh-circles__bubble--accent {
  background: var(--mh-lime);
  color: var(--mh-plum);
}

.mh-circles__bubble--accent svg { width: 36%; height: 36%; }

.mh-circles__label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mh-plum);
  text-align: center;
  letter-spacing: -0.005em;
}

.mh-circles__item--accent .mh-circles__label { color: var(--mh-primary-deep); }

/* Optional section heading above the row (used by .mh-circles--brands) */
.mh-circles__head {
  max-width: 1450px;
  margin: 0 auto 0.9rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.mh-circles__title {
  font-family: var(--mh-head, var(--bs-body-font-family));
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--mh-plum);
  margin: 0;
}
.mh-circles__seeall {
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-primary-deep);
  text-decoration: none;
  white-space: nowrap;
}
.mh-circles__seeall:hover { color: var(--mh-plum); }

/* Below 1200px: keep all 12 circles in one row but scrollable horizontally */
@media (max-width: 1200px) {
  .mh-circles__inner {
    grid-template-columns: repeat(12, minmax(100px, 1fr));
    gap: 0.85rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .mh-circles__inner {
    grid-template-columns: repeat(12, minmax(92px, 124px));
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .mh-circles__inner {
    grid-template-columns: repeat(12, minmax(82px, 104px));
    gap: 0.6rem;
  }
  .mh-circles__label { font-size: 11.5px; }
}

/* ============================================================
   USP BAND (compact strip)
   ============================================================ */

.mh-usp-band {
  background: #FAFAFA;
  padding: 1rem 0;
  border-top: 1px solid var(--mh-line);
  border-bottom: 1px solid var(--mh-line);
}

.mh-usp-band__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13.5px;
  color: var(--mh-muted);
}

@media (max-width: 760px) {
  .mh-usp-band__inner { justify-content: center; gap: 1.25rem; }
}

.mh-usp-band__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mh-usp-band__item strong { color: var(--mh-plum); font-weight: 700; }
.mh-usp-band__item svg { color: var(--mh-primary); flex-shrink: 0; }

.mh-usp-band__item--accent { color: var(--mh-primary-deep); }
.mh-usp-band__item--accent strong { color: var(--mh-primary-deep); }
.mh-usp-band__item--accent svg { color: var(--mh-yellow); }

/* ============================================================
   SECTION FRAME
   ============================================================ */

.mh-section { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.mh-section--cream { background: #FAFAFA; }
.mh-section--rose { background: var(--mh-rose); }
.mh-section--lilac { background: var(--mh-lilac); }
.mh-section.mh-hookhome { padding-top: 1.5rem; padding-bottom: 3rem; }

.mh-container { max-width: 1450px; margin: 0 auto; padding: 0 1.5rem; }

.mh-section__head {
  margin-bottom: 2.75rem;
  text-align: center;
}

.mh-section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
}

.mh-section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mh-muted);
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.mh-section__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  margin: 0;
  color: var(--mh-plum);
  letter-spacing: -0.03em;
}

.mh-section__title em {
  font-style: normal;
  color: var(--mh-primary);
}

.mh-section__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: color .15s ease;
}

.mh-section__more:hover { color: var(--mh-primary-deep); }

/* ============================================================
   PRODUCT GRID + CARD
   ============================================================ */

.mh-grid { display: grid; gap: 0.75rem; }
.mh-grid--6 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1200px) { .mh-grid--6 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .mh-grid--6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .mh-grid--6 { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

/* Section titles inside HOOK_HOME — show the real Danish titles, style consistently */
.mh-hookhome h2,
.mh-hookhome .h2,
.mh-hookhome .featured-products__title,
.mh-hookhome .products-section-title,
.mh-hookhome .module-title,
.mh-hookhome .section-title {
  display: block !important;
  font-family: "Bricolage Grotesque", var(--mh-font-heading) !important;
  font-weight: 600 !important;
  font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
  letter-spacing: -0.025em !important;
  color: var(--mh-plum) !important;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  text-align: left !important;
  border: 0 !important;
  line-height: 1.1 !important;
}

/* Spacing between consecutive product carousels (target module wrappers INSIDE container, not the container itself) */
.mh-hookhome .mh-container > section,
.mh-hookhome .mh-container > div {
  margin: 0 0 4rem !important;
}
.mh-hookhome .mh-container > section:last-child,
.mh-hookhome .mh-container > div:last-child { margin-bottom: 0 !important; }
.mh-hookhome > .mh-container { margin: 0 auto !important; }

/* "Alle nyheder" / "All featured products" buttons → clean text-link with arrow */
.mh-hookhome .btn-outline-primary,
.mh-hookhome .btn.btn-outline-primary,
.mh-hookhome .module-products__buttons .btn,
.mh-hookhome .module-products__buttons a {
  background: transparent !important;
  border: 0 !important;
  padding: 0.4rem 0 !important;
  color: var(--mh-plum) !important;
  font-family: var(--mh-font-body) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  border-radius: 0 !important;
  display: inline-block !important;
  margin: 1.5rem 0 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.mh-hookhome .btn-outline-primary::after,
.mh-hookhome .module-products__buttons .btn::after,
.mh-hookhome .module-products__buttons a::after {
  content: " →";
  text-decoration: none;
  display: inline-block;
  margin-left: 0.25rem;
}

.mh-hookhome .btn-outline-primary:hover { color: var(--mh-primary-deep) !important; }

/* Center button under each carousel */
.mh-hookhome .module-products__buttons {
  text-align: center !important;
  margin-top: 1.5rem !important;
}

/* Force HOOK_HOME carousel widgets to render as a 6-column grid instead of horizontal slider */
.mh-hookhome .swiper,
.mh-hookhome .swiper-container,
.mh-hookhome .slick-slider,
.mh-hookhome [class*="carousel"] {
  overflow: visible !important;
  width: 100% !important;
}

.mh-hookhome .products,
.mh-hookhome .product_list,
.mh-hookhome .products-list,
.mh-hookhome .swiper-wrapper,
.mh-hookhome .slick-track,
.mh-hookhome ul.products,
.mh-hookhome [class*="product-list"] {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0.75rem !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.mh-hookhome .swiper-slide,
.mh-hookhome .slick-slide,
.mh-hookhome .products > li,
.mh-hookhome .swiper-wrapper > * {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
}

.mh-hookhome .swiper-button-prev,
.mh-hookhome .swiper-button-next,
.mh-hookhome .slick-arrow,
.mh-hookhome .swiper-pagination { display: none !important; }

@media (max-width: 1200px) {
  .mh-hookhome .products, .mh-hookhome .swiper-wrapper, .mh-hookhome ul.products,
  .mh-hookhome [class*="product-list"] { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 900px) {
  .mh-hookhome .products, .mh-hookhome .swiper-wrapper, .mh-hookhome ul.products,
  .mh-hookhome [class*="product-list"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .mh-hookhome .products, .mh-hookhome .swiper-wrapper, .mh-hookhome ul.products,
  .mh-hookhome [class*="product-list"] { grid-template-columns: repeat(2, 1fr) !important; }
}

.mh-card {
  background: #FFFFFF;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mh-card__link { display: flex; flex-direction: column; color: inherit; text-decoration: none; flex: 1; }
.mh-card__link:hover { color: inherit; }

.mh-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #F4F4F2;
  border-radius: 2px;
  overflow: hidden;
}

.mh-card__media-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.mh-card__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .35s ease;
  mix-blend-mode: multiply;
}

.mh-card:hover .mh-card__img { transform: scale(1.04); }

.mh-card__actions {
  position: absolute;
  bottom: 0.45rem;
  right: 0.45rem;
  display: flex;
  gap: 0.3rem;
  z-index: 2;
}

.mh-card__actions .mh-card__wish-slot,
.mh-card__actions .bm-wishlist-btn-mini,
.mh-card__actions .mh-card__form,
.mh-card__actions .mh-card__buy {
  position: static !important;
  display: inline-flex !important;
  flex: 0 0 auto;
  margin: 0 !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.mh-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #E30613;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  line-height: 1;
  z-index: 1;
}

.mh-card__badge--sale { background: #E30613; }
.mh-card__badge--tag { background: var(--mh-plum); top: 0.5rem; left: auto; right: 0.5rem; }

.bm-wishlist-btn-mini,
.mh-card__wish {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: #FFFFFF;
  border: 0;
  color: var(--mh-plum);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease;
  padding: 0;
}

.bm-wishlist-btn-mini:hover,
.mh-card__wish:hover { color: var(--mh-primary); }

.bm-wishlist-btn-mini.in-wishlist { background: var(--mh-primary); color: #FFFFFF; }
.bm-wishlist-btn-mini img { width: 14px; height: 14px; }
.bm-wishlist-btn-mini.in-wishlist img { filter: brightness(0) invert(1); }

.mh-card__body {
  padding: 0.7rem 0 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.mh-card__brand {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mh-muted);
  display: none;
}

.mh-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-ink);
  line-height: 1.3;
  margin-bottom: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  letter-spacing: -0.005em;
}

.mh-card__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}

.mh-card__stars {
  color: #0F0F0F;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.mh-card__rcount {
  font-size: 11px;
  color: var(--mh-muted);
  font-weight: 500;
}

.mh-card__stock {
  font-size: 11.5px;
  color: var(--mh-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mh-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2BB673;
  display: inline-block;
}

.mh-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.15rem;
  flex-wrap: wrap;
}

.mh-card__was {
  font-size: 12px;
  color: var(--mh-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.mh-card__price {
  font-family: var(--mh-font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--mh-plum);
  letter-spacing: -0.005em;
}

.mh-card__price--sale { color: #E30613; }

.mh-card__save {
  display: none;
}

.mh-card__form { margin: 0; }

.mh-card__buy {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color .15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mh-card__buy i { font-size: 16px; line-height: 1; }
.mh-card__buy::before { content: none; }

.mh-card__buy:hover { background: var(--mh-primary); }
.mh-card__buy--added { background: var(--mh-lime-deep); }
.mh-card__buy--added::before { content: none; }
.mh-card__buy--added i { font-size: 14px; }

.mh-card__wish--on { background: var(--mh-primary); color: #FFFFFF; border-color: var(--mh-primary); }
.mh-card__wish--on i { font-weight: bold; }

.mh-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--mh-plum);
  color: #FFFFFF;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 18px 40px rgba(61, 21, 48, 0.30);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 10000;
  pointer-events: none;
}
.mh-toast--in { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   BRAND WALL
   ============================================================ */

.mh-brand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.85rem;
}

.mh-brand-tile {
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  border-radius: 14px;
  padding: 1.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow: 0 1px 0 rgba(61, 21, 48, 0.04);
}

.mh-brand-tile:hover {
  border-color: var(--mh-primary);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 61, 154, 0.14);
  background: var(--mh-rose);
}

.mh-brand-tile__name {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--mh-plum);
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1;
}

.mh-brand-tile__name--italic { font-style: italic; }

@media (max-width: 1100px) { .mh-brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .mh-brand-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   FEATURE CARDS (2-up large)
   ============================================================ */

.mh-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mh-feature {
  border-radius: 22px;
  padding: 2.25rem;
  text-decoration: none;
  color: var(--mh-plum);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 280px;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  position: relative;
}

.mh-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(61, 21, 48, 0.16);
  color: var(--mh-plum);
}

.mh-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mh-feature__tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mh-primary-deep);
}

.mh-feature__tag--light { color: rgba(255, 255, 255, 0.85); }

.mh-feature__title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--mh-plum);
}

.mh-feature__title--light { color: #FFFFFF; }

.mh-feature__title em {
  font-style: normal;
  color: var(--mh-primary);
}

.mh-feature__title--light em {
  color: var(--mh-primary-soft);
}

.mh-feature__lede {
  font-size: 14.5px;
  color: var(--mh-plum-soft);
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
}

.mh-feature__lede--light { color: rgba(255, 255, 255, 0.85); }

.mh-feature__cta {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--mh-primary-deep);
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
}

.mh-feature__cta--light { color: var(--mh-lime); }

.mh-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-feature__visual img {
  max-width: 100%;
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(61, 21, 48, 0.18));
}

@media (max-width: 900px) {
  .mh-feature-grid { grid-template-columns: 1fr; }
  .mh-feature { grid-template-columns: 1fr; padding: 1.75rem; }
}

/* ============================================================
   REVIEWS
   ============================================================ */

.mh-tp-summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 13.5px;
}

.mh-tp-summary__logo {
  color: var(--mh-tp-green);
  font-weight: 800;
  font-size: 14px;
}

.mh-tp-summary__stars { color: var(--mh-tp-green); font-size: 16px; letter-spacing: 0.04em; }
.mh-tp-summary__text { color: var(--mh-muted); }
.mh-tp-summary__text strong { color: var(--mh-plum); }

.mh-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mh-reviews__card {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.mh-reviews__stars { color: var(--mh-tp-green); font-size: 17px; letter-spacing: 0.05em; }

.mh-reviews__quote {
  font-family: var(--mh-font-heading);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--mh-plum);
  margin: 0;
  letter-spacing: -0.005em;
}

.mh-reviews__author {
  font-size: 12.5px;
  color: var(--mh-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mh-reviews__author strong { color: var(--mh-plum); font-weight: 700; }

.mh-reviews__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  color: var(--mh-lime-deep);
  font-weight: 700;
}

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

/* ============================================================
   NEWSLETTER BAND
   ============================================================ */

.mh-newsletter {
  background: var(--mh-plum);
  color: #FFFFFF;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  text-align: center;
  position: relative;
}

.mh-newsletter__inner { max-width: 640px; margin: 0 auto; padding: 0 1.25rem; position: relative; z-index: 1; }

.mh-newsletter__eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.9rem;
}

.mh-newsletter__title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.mh-newsletter__title em {
  font-style: normal;
  color: #FFFFFF;
}

.mh-newsletter__lede { color: rgba(255, 255, 255, 0.85); font-size: 0.98rem; line-height: 1.6; margin: 0 0 1.5rem; }

.mh-newsletter__form {
  display: flex;
  gap: 0.4rem;
  background: #FFFFFF;
  padding: 0.35rem;
  border-radius: 999px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.mh-newsletter__input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.7rem 1.1rem;
  font-size: 14.5px;
  color: var(--mh-plum);
  outline: none;
  border-radius: 999px;
  min-width: 0;
}

.mh-newsletter__input::placeholder { color: var(--mh-muted); }

.mh-newsletter__btn {
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: opacity .18s ease;
  white-space: nowrap;
}

.mh-newsletter__btn:hover { opacity: 0.85; }

.mh-newsletter__fine { font-size: 11.5px; opacity: 0.7; margin-top: 1rem; margin-bottom: 0; }

/* ============================================================
   PRE-FOOTER USP CARDS (AB-style 4 photo cards)
   ============================================================ */

.mh-pre-footer {
  background: #FFFFFF;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.mh-pre-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mh-pre-footer__card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.mh-pre-footer__photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.mh-pre-footer__badge {
  position: absolute;
  top: calc(75% - 28px);
  left: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--mh-primary-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--mh-primary);
  box-shadow: 0 10px 20px rgba(255, 61, 154, 0.15);
}

.mh-pre-footer__title {
  font-family: var(--mh-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  color: var(--mh-plum);
  letter-spacing: -0.015em;
}

.mh-pre-footer__lede {
  font-size: 13.5px;
  color: var(--mh-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) { .mh-pre-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .mh-pre-footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER (AB-style: pink gradient · 3 col · Trustpilot column)
   ============================================================ */

.mh-footer {
  background: linear-gradient(0deg, #FFFFFF, var(--mh-rose), var(--mh-rose));
  color: var(--mh-plum);
  padding-top: 3.5rem;
}

.mh-footer__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 200px;
}

.mh-footer__grid {
  display: grid;
  grid-template-columns: 220px 1fr 360px;
  gap: 4rem;
  padding-bottom: 3rem;
}

.mh-footer__col--brand { display: flex; flex-direction: column; gap: 1rem; }

.mh-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.mh-footer__brand-img {
  height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.mh-footer__address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mh-plum);
  margin: 0;
}

.mh-footer__cvr {
  font-size: 13px;
  color: var(--mh-muted);
  margin: 0;
}

.mh-footer__locale {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--mh-border);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mh-plum);
  cursor: pointer;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.mh-footer__flag { font-size: 16px; line-height: 1; }

/* Links */

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

.mh-footer__group { display: flex; flex-direction: column; gap: 0.25rem; }

.mh-footer__heading {
  font-family: var(--mh-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum);
  margin: 0 0 0.25rem;
  letter-spacing: 0;
  text-transform: none;
}

.mh-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.1rem; }

.mh-footer__list a {
  font-size: 12.5px;
  color: var(--mh-muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s ease;
}

.mh-footer__list a:hover { color: var(--mh-primary-deep); }

/* Contact + socials + Trustpilot */

.mh-footer__col--contact { display: flex; flex-direction: column; gap: 1.5rem; }

.mh-footer__contact { display: flex; flex-direction: column; gap: 0.35rem; }

.mh-footer__eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-plum);
  margin-bottom: 0.2rem;
}

.mh-footer__email {
  font-size: 18px;
  font-weight: 700;
  color: var(--mh-plum);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.mh-footer__email:hover { color: var(--mh-primary-deep); }

.mh-footer__phone {
  font-size: 17px;
  font-weight: 500;
  color: var(--mh-plum);
  margin: 0;
}

.mh-footer__hours {
  font-size: 13px;
  color: var(--mh-muted);
  line-height: 1.5;
  margin: 0.5rem 0 0;
}

.mh-footer__hours a { color: var(--mh-primary-deep); text-decoration: underline; }

.mh-footer__socials {
  display: flex;
  gap: 0.6rem;
}

.mh-footer__social {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--mh-plum);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .18s ease, transform .18s ease;
}

.mh-footer__social:hover { background: var(--mh-primary); color: #FFFFFF; transform: translateY(-2px); }

/* Trustpilot widget block */

/* Simple one-line Trustpilot mention (matches header style) */
.mh-footer__tp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--mh-plum);
  font-size: 13px;
  font-weight: 600;
}

.mh-footer__tp:hover { color: var(--mh-primary-deep); }

.mh-footer__tp-stars {
  color: var(--mh-tp-green);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.mh-footer__tp-text { color: var(--mh-plum); }

/* Bottom + micro strips */

/* Base row — payments, legal & copyright integrated inside the footer body */
.mh-footer__base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 15, 15, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.mh-footer__base .mh-footer__copy {
  flex-basis: 100%;
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1.75rem;
  border-top: 1px solid rgba(15, 15, 15, 0.06);
}

.mh-footer__pays {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mh-plum);
}

.mh-footer__pay {
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

.mh-footer__pay-logo {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.mh-footer__pay-logo--ship {
  height: 22px;
  mix-blend-mode: multiply;
}

.mh-footer__pay-sep { opacity: 0.5; padding: 0 0.25rem; }

.mh-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mh-footer__legal a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: none;
}

.mh-footer__legal a:hover { color: var(--mh-primary-deep); }

.mh-footer__copy {
  font-size: 12px;
  color: var(--mh-muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .mh-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mh-footer__linkgrid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

#main { padding-block: 1rem 3rem; }
body#product .breadcrumb__wrapper { margin-bottom: 0.5rem; }

/* No breadcrumb on the blog (home, category, article) */
body[id^="module-bm_blog-"] .breadcrumb__wrapper { display: none; }

.product__container.product-container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 1fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Align breadcrumb + rail with header/footer grid (1400px) */
body#product .breadcrumb__wrapper .container,
body#category .breadcrumb__wrapper .container {
  max-width: 1450px;
  padding: 0 1.5rem;
}

/* Image column — gray container at full left-column width,
   capped height, image centered inside */
.product__left {
  background: #F7F7F5;
  border-radius: 4px;
  padding: 1.25rem;
  display: block;
  min-height: 0;
  position: sticky;
  top: 16px;
}

/* Thumbnails go on the LEFT of the main image (Coolshop pattern) */
.product__images.js-images-container {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: stretch;
  margin: 0;
}

.product__thumbnails {
  order: -1;
  width: 64px;
  flex-shrink: 0;
  margin: 0;
}
.product__thumbnails-list {
  display: flex !important;
  flex-direction: column;
  gap: 0.45rem !important;
  grid-template-columns: none !important;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product__thumbnail {
  width: 64px;
  height: 64px;
  padding: 4px;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product__thumbnail.active,
.product__thumbnail:hover {
  border-color: var(--mh-plum);
}
.product__thumbnail-image {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  outline: none !important;
  border-radius: 0 !important;
}

/* Main carousel — fixed height, image centered */
.product__carousel {
  flex: 1 1 auto;
  min-width: 0;
  height: 460px;
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide thumbnail strip when there's only one image */
.product__thumbnails-list:not(:has(.product__thumbnail + .product__thumbnail)),
.product__thumbnails:not(:has(.product__thumbnail + .product__thumbnail)) {
  display: none !important;
}
.product__carousel .carousel-inner,
.product__carousel .carousel-item {
  height: 100%;
}
.product__carousel .carousel-item {
  display: none;
  align-items: center;
  justify-content: center;
}
.product__carousel .carousel-item.active {
  display: flex;
}
.product__carousel .carousel-item picture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.product__carousel .carousel-item img {
  max-height: 100% !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.product__left img,
.product-cover img,
.js-product-cover {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.product__thumbnail-image,
.product__thumbnail img {
  mix-blend-mode: multiply;
}

.mh-sticky-cart__img {
  mix-blend-mode: multiply;
}

.mh-rail__item .product-miniature img,
.mh-rail__item .thumbnail-container img {
  mix-blend-mode: multiply;
}

.product-cover { background: transparent; }

.product__right { padding-top: 0; margin-top: 0; }

.product__right > *:first-child { margin-top: 0 !important; }

.product__name {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: var(--mh-plum);
}

/* Title row — product name + wishlist heart side by side */
.product__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.product__header-row .product__name {
  flex: 1 1 auto;
  min-width: 0;
}
.mh-wishlist-btn--title {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-top: 2px;
}
.mh-wishlist-btn--title svg { width: 20px; height: 20px; }

.product__manufacturer {
  margin: 0 0 0.4rem;
}

.product__manufacturer a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--mh-plum-soft);
  text-decoration: none;
}

.product__manufacturer a:hover { color: var(--mh-primary-deep); }

.product__prices { margin: 0.5rem 0 1.5rem; }
.product__prices-block { display: flex; flex-direction: column; gap: 0.25rem; }

.product__discount-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  order: 2;
}

.product__regular-price {
  font-size: 15px;
  color: var(--mh-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.product__discount-percentage {
  background: var(--mh-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  line-height: 1;
}

/* −X% and "Spar X kr." stacked vertically beside the price */
.mh-price-badges {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
}

.product__price {
  font-family: var(--mh-font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mh-plum);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.product__tax-infos {
  font-size: 12px;
  color: var(--mh-muted);
  margin-top: 0.35rem;
}

.product__description-short {
  font-size: 15px;
  color: var(--mh-muted);
  line-height: 1.5;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
  border: 0;
}

.product__actions { margin-top: 1.25rem; }

/* The ATC form + its containers must span the full buy-box width */
.product__actions,
.product__actions form,
.product__actions .product-add-to-cart,
.product__actions .product__add-to-cart-container {
  display: block;
  width: 100%;
}

/* Qty + ATC sit on ONE full-width row, no wrap */
.product-quantity,
.product__actions-qty-add {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
  margin: 0.75rem 0 0 !important;
  width: 100% !important;
}

/* Qty picker = ~20% of the row, sits left of the ATC button */
.product-actions__quantity,
.product__quantity.quantity-button,
.js-quantity-button {
  display: flex !important;
  flex: 0 0 20% !important;
  min-width: 116px;
  align-items: stretch;
}
.quantity-button__group.input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
  height: 52px;
  width: 100%;
}
.quantity-button__group .btn,
.quantity-button__group .btn-square-icon {
  background: transparent;
  border: 0;
  border-radius: 0;
  width: auto;
  height: 100%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-plum);
  cursor: pointer;
  flex: 0 0 32px;
}
.quantity-button__group .btn:hover { background: var(--mh-rose); color: var(--mh-primary-deep); }
.quantity-button__group .btn i { font-size: 16px; }
.quantity-button__group .spinner-border { display: none !important; }
.qty-input,
.product-quantity .form-control,
.quantity-button__group .form-control,
.quantity-button__group input[type="text"] {
  flex: 1 1 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  text-align: center;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  background: #FFFFFF;
  padding: 0;
  box-shadow: none !important;
  outline: none !important;
}
.qty-input:focus { background: #FFFFFF; }

/* ATC container is just a flex wrapper — no background */
.product-add-to-cart,
.product__add-to-cart-container {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
}

/* ATC wrapper grows to fill the row beside the 20% qty picker */
.product__add-to-cart {
  flex: 1 1 0 !important;
  width: auto;
  min-width: 0;
}
.product__add-to-cart-button,
.product-add-to-cart .btn-add-to-cart,
.add-to-cart {
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  padding: 0 1.5rem;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex: 1 1 100%;
  width: 100%;
  height: 52px;
  min-height: 0;
  transition: background-color .15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.product__add-to-cart-button:hover,
.product-add-to-cart .btn-add-to-cart:hover,
.add-to-cart:hover { background: var(--mh-primary); color: #FFFFFF; }

.product__add-to-cart-button i,
.add-to-cart i { font-size: 18px; }

/* Hide the awkward blockreassurance placeholder boxes (un-configured defaults) */
.blockreassurance,
.blockreassurance--product,
#block-reassurance {
  display: none;
}

/* Tabs / accordion area */
.tabs,
.product__details {
  margin-top: 3rem;
  max-width: 1450px;
  margin-inline: auto;
}

.product__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--mh-line);
}

.product__details .accordion-item,
.product__details details {
  border-bottom: 1px solid var(--mh-line);
}

.product__details .accordion-button,
.product__details summary {
  font-family: var(--mh-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 1.3rem 0;
  background: transparent;
  color: var(--mh-plum);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product__details .accordion-body,
.product__details details > div {
  padding: 0 0 1.5rem;
  font-size: 14.5px;
  color: var(--mh-muted);
  line-height: 1.6;
}

/* Reviews block */
.product-comments,
#product-comments-list {
  max-width: 1450px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--mh-line);
}

.product-comments h2,
.product-comments .h2 {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

/* Related products */
.product-accessories,
.featured-products,
.crossselling-products {
  max-width: 1450px;
  margin: 4rem auto 0;
}

.product-accessories h2,
.featured-products h2 {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  text-align: left;
  color: var(--mh-plum);
}

/* Social share row */
.social-sharing {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 12px;
  color: var(--mh-muted);
}

.social-sharing ul { display: flex; gap: 0.45rem; list-style: none; padding: 0; margin: 0; }

.social-sharing a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
  border-radius: 999px;
  transition: background-color .15s ease;
}

.social-sharing a:hover { background: var(--mh-rose); }

/* Hide the small flag overlay on PDP image; keep just the % discount in info column */
.product__left .product-flag,
.product-cover .product-flag { display: none; }

/* Mobile */
/* Legacy responsive rule — overridden by PDP v3 mobile polish further down */
@media (max-width: 900px) {
  .product__container.product-container { grid-template-columns: 1fr; gap: 1rem; padding: 0; }
}

/* ============================================================
   PRODUCT MINIATURE OVERRIDES (Hummingbird catalog cards)
   ============================================================ */

.product-miniature,
.js-product-miniature {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.product-title a {
  color: var(--mh-plum);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  font-family: var(--mh-font-body);
}

.product-price-and-shipping .price,
.product-price {
  color: var(--mh-primary-deep);
  font-weight: 800;
  font-size: 17px;
  font-family: var(--mh-font-body);
}

.regular-price {
  color: var(--mh-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.product-flag {
  background: var(--mh-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 12px;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}

.product-flag.new { background: var(--mh-plum); }
.product-flag.online-only { background: var(--mh-lime); color: var(--mh-plum); }

/* ============================================================
   PDP v2 — Matas-leaning hybrid
   Buy box (USPs, Spar chip, rating link, payment icons, wishlist)
   Sticky cart bar · accordion polish · Anbefalet hero card
   ============================================================ */

/* Rating link under H1 */
.mh-pdp__rating-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0 1rem;
  color: var(--mh-muted);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}
.mh-pdp__rating-link:hover { color: var(--mh-primary-deep); }
.mh-pdp__rating-stars {
  color: var(--mh-yellow);
  letter-spacing: 1px;
  font-size: 14px;
}
.mh-pdp__rating-text { border-bottom: 1px solid var(--mh-line); padding-bottom: 1px; }

/* Spar X,- chip beside % badge */
.mh-pdp-save {
  background: var(--mh-plum);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* USP row — 2x2 grid of small icon+label items below ATC */
.mh-usps {
  list-style: none;
  margin: 1.5rem 0 1.25rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 6px;
}
.mh-usps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 13px;
  color: var(--mh-plum);
  line-height: 1.3;
}
.mh-usps__item strong {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.mh-usps__item small {
  display: block;
  font-size: 11.5px;
  color: var(--mh-muted);
  font-weight: 500;
  margin-top: 1px;
}
.mh-usps__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--mh-plum);
  margin-top: 1px;
}
.mh-usps__icon--tp { color: var(--mh-tp-green); }

/* Payment icons row below USPs */
.mh-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 0.75rem 0 0;
  font-size: 11.5px;
  color: var(--mh-muted);
}
.mh-payment-icons__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10.5px;
  color: var(--mh-plum-soft);
}
.mh-payment-icons__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
/* Image-based payment chips — real brand logos, height-normalised */
.mh-payicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 0.45rem;
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
}
.mh-payicon img {
  height: 16px;
  width: auto;
  max-width: 46px;
  object-fit: contain;
  display: block;
}

/* Wishlist heart inline with ATC — matches 44px ATC row height */
.mh-wishlist-btn {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  color: var(--mh-plum);
  cursor: pointer;
  transition: all .15s ease;
  flex-shrink: 0;
}
.mh-wishlist-btn:hover { border-color: var(--mh-primary); color: var(--mh-primary); background: var(--mh-rose); }
.mh-wishlist-btn.is-active,
.mh-wishlist-btn.in-wishlist { background: var(--mh-primary); color: #FFFFFF; border-color: var(--mh-primary); }
.mh-wishlist-btn.is-active svg,
.mh-wishlist-btn.in-wishlist svg { fill: currentColor; }
.mh-wishlist-btn svg { width: 20px; height: 20px; }

/* ============================================================
   STICKY ADD-TO-CART BAR (desktop top, mobile bottom)
   ============================================================ */
/* Sticky cart bar ALWAYS at the bottom (desktop + mobile) */
.mh-sticky-cart {
  position: fixed;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 20px;
  width: calc(100% - 2rem);
  max-width: 900px;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(15, 15, 15, 0.18);
  transform: translate(-50%, calc(100% + 28px));
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
  opacity: 0;
  pointer-events: none;
}
.mh-sticky-cart.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.mh-sticky-cart__inner {
  max-width: none;
  margin: 0 auto;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mh-sticky-cart__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #F7F7F5;
  border-radius: 3px;
  flex-shrink: 0;
}
.mh-sticky-cart__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mh-sticky-cart__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--mh-plum);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mh-sticky-cart__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 13.5px;
}
.mh-sticky-cart__regular {
  color: var(--mh-muted);
  text-decoration: line-through;
  font-size: 12px;
}
.mh-sticky-cart__current {
  color: var(--mh-primary-deep);
  font-weight: 800;
  font-size: 15px;
}
.mh-sticky-cart__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
  flex-shrink: 0;
}
.mh-sticky-cart__btn:hover { background: var(--mh-primary); }
.mh-sticky-cart__btn svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .mh-sticky-cart__inner { padding: 0.6rem 0.85rem; gap: 0.65rem; }
  .mh-sticky-cart__btn { padding: 0.7rem 1rem; font-size: 12px; }
  .mh-sticky-cart__name { font-size: 13px; }
}

/* ============================================================
   ACCORDION POLISH (Om produktet, Ingredienser, etc.)
   ============================================================ */
.product__bottom.mh-pdp-info {
  display: block;
  max-width: 1450px;
  margin: 3rem auto 0;
}
.product__bottom.mh-pdp-info .product__bottom-left {
  margin: 0;
}

.mh-acc .accordion-item {
  border-bottom: 1px solid var(--mh-line);
  border-top: 0;
}
.mh-acc .accordion-item:first-child {
  border-top: 1px solid var(--mh-line);
}
.mh-acc .accordion-button {
  background: transparent;
  font-family: var(--mh-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--mh-plum);
  padding: 1.4rem 0;
  letter-spacing: -0.005em;
}
.mh-acc .accordion-button:not(.collapsed) {
  color: var(--mh-plum);
  background: transparent;
  box-shadow: none;
}
.mh-acc .accordion-button:focus { box-shadow: none; outline: none; }
.mh-acc .accordion-body {
  padding: 0 0 1.5rem;
  font-size: 14.5px;
  color: var(--mh-plum-soft);
  line-height: 1.65;
}
.mh-acc .accordion-body p { margin-bottom: 0.65rem; }
.mh-acc .accordion-body p:last-child { margin-bottom: 0; }
.mh-acc .accordion-body strong { color: var(--mh-plum); font-weight: 600; }

/* Smooth accordion open/close */
.mh-acc .accordion-collapse {
  will-change: height;
}
.mh-acc .accordion-collapse.collapsing {
  transition: height .34s cubic-bezier(.4, 0, .2, 1);
}
.mh-acc .accordion-button::after {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.mh-acc .accordion-body {
  transition: opacity .25s ease;
}
.mh-acc .accordion-collapse.collapsing .accordion-body,
.mh-acc .accordion-collapse:not(.show) .accordion-body {
  opacity: 0;
}
.mh-acc .accordion-collapse.show .accordion-body {
  opacity: 1;
}

/* Product spec list — clean label/value table */
.details__list,
.mh-acc .details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.details__item,
.mh-acc .details__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--mh-line);
  margin: 0;
}
.details__item:last-child,
.mh-acc .details__item:last-child { border-bottom: 0; }
.details__item:first-child,
.mh-acc .details__item:first-child { padding-top: 0; }
.details__left,
.mh-acc .details__left { flex: 0 0 auto; }
.details__title,
.mh-acc .details__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-muted);
}
.details__right,
.mh-acc .details__right {
  flex: 1 1 auto;
  text-align: right;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mh-plum);
  min-width: 0;
}
.details__right a {
  color: var(--mh-primary-deep);
  text-decoration: none;
}
.details__right a:hover { text-decoration: underline; }
.details__manufacturer-logo {
  display: inline-block;
  max-height: 28px;
  width: auto;
}

/* ============================================================
   REVIEWS BLOCK — summary card
   ============================================================ */
#product-comments-list-header,
.product-comments-list-header,
.product-comments .comments-note {
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}
.product-comments .grade-stars,
.product-comments .star-content {
  color: var(--mh-yellow) !important;
}
.product-comments__post-comment {
  background: var(--mh-plum);
  color: #FFFFFF !important;
  border: 0 !important;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-comments__post-comment:hover { background: var(--mh-primary); }

.product-comments__comment {
  border: 1px solid var(--mh-line);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.85rem;
  background: #FFFFFF;
}
.product-comments__comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.product-comments__comment-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--mh-plum);
}
.product-comments__comment-date {
  font-size: 12px;
  color: var(--mh-muted);
}

/* ============================================================
   CROSS-SELL — Anbefalet at købe med (hero card)
   ============================================================ */
.mh-pairs {
  max-width: 1450px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}
.mh-pairs__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0 0 1.25rem;
}
.mh-pairs__card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 1.75rem;
  background: var(--mh-rose);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
}
.mh-pairs__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 1rem;
  height: 160px;
}
.mh-pairs__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.mh-pairs__body { min-width: 0; }
.mh-pairs__name {
  display: block;
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: var(--mh-plum);
  text-decoration: none;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.mh-pairs__name:hover { color: var(--mh-primary-deep); }
.mh-pairs__desc {
  font-size: 13.5px;
  color: var(--mh-plum-soft);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.mh-pairs__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.mh-pairs__regular {
  color: var(--mh-muted);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 500;
}
.mh-pairs__current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mh-primary-deep);
}
.mh-pairs__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mh-plum);
  color: #FFFFFF;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s ease;
  white-space: nowrap;
}
.mh-pairs__cta:hover { background: var(--mh-primary); color: #FFFFFF; }
.mh-pairs__cta svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .mh-pairs__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
    gap: 1rem;
  }
  .mh-pairs__img { height: 140px; }
  .mh-pairs__price { justify-content: center; }
  .mh-pairs__cta { justify-self: stretch; justify-content: center; }
}

/* "Andre kunder købte også" title */
.mh-otherbought {
  max-width: 1450px;
  margin: 3.5rem auto 0;
  padding: 0 1rem;
}
.mh-otherbought__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0 0 1.5rem;
}

/* ============================================================
   BODY PADDING when sticky bar is visible (mobile prevents
   the bottom bar from covering footer/cart-link content)
   ============================================================ */
@media (max-width: 768px) {
  body.product .mh-sticky-cart.is-visible ~ * { padding-bottom: 0; }
  body.product .mh-sticky-cart.is-visible { padding-bottom: env(safe-area-inset-bottom); }
}

/* ============================================================
   Boozt-style category page (MyHair.dk)
   Used by templates/catalog/listing/category.tpl and partials.
   ============================================================ */

.breadcrumb__wrapper,
body#category .breadcrumb__wrapper,
body#product .breadcrumb__wrapper {
  background: transparent !important;
  border: 0;
  padding: 0.65rem 0 0;
}

.breadcrumb,
body#category .breadcrumb,
body#product .breadcrumb {
  font-size: 11.5px;
  color: var(--mh-muted);
  letter-spacing: 0;
  text-transform: none;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding-left: 0;
  margin: 0;
  background: transparent;
  line-height: 1.4;
}

.breadcrumb-item + .breadcrumb-item::before,
body#category .breadcrumb-item + .breadcrumb-item::before,
body#product .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding-right: 0.3rem;
  color: var(--mh-soft);
}

.breadcrumb-link,
body#category .breadcrumb-link,
body#product .breadcrumb-link {
  color: var(--mh-muted);
  text-decoration: none;
}

.breadcrumb-link:hover,
body#category .breadcrumb-link:hover,
body#product .breadcrumb-link:hover { color: var(--mh-plum); text-decoration: underline; }

body#product .breadcrumb-item:last-child {
  color: var(--mh-plum-soft);
}

/* Category page sticks to the standard page grid (uses theme's default container).
   bm_filters lives in #left-column via displayLeftColumn — keep it visible on desktop. */

body#category #wrapper .columns-container.container > .row {
  --bs-gutter-x: 1.75rem;
}

@media (min-width: 992px) {
  body#category #left-column {
    flex: 0 0 200px;
    max-width: 200px;
    width: 200px;
    padding-top: 0.25rem;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    max-height: calc(100vh - 1.5rem);
    overflow-y: auto;
    scrollbar-width: thin;
  }

  body#category #center-column.center-column.page {
    flex: 1 1 0;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 991.98px) {
  body#category #left-column { display: none; }
  body#category #center-column.center-column.page {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ---------- bm_filters / faceted sidebar polish (compact) ---------- */

body#category #left-column #search_filters,
body#category #left-column .bm-filters,
body#category #left-column [id*="filter"] {
  background: #fff;
  border: 1px solid var(--mh-border);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 12.5px;
}

body#category #left-column .h6,
body#category #left-column .facet-title,
body#category #left-column .filter-title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mh-ink);
  margin: 0 0 0.35rem;
}

body#category #left-column .facet {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--mh-line);
}

body#category #left-column .facet:last-child { border-bottom: 0; }

body#category #left-column .facet ul,
body#category #left-column .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
}

body#category #left-column .facet-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.1rem;
  font-size: 12.5px;
  line-height: 1.25;
  color: var(--mh-plum-soft);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.12s ease, color 0.12s ease;
}

body#category #left-column .facet-label:hover {
  background: var(--mh-rose);
  color: var(--mh-primary-deep);
}

body#category #left-column .facet-label.active {
  color: var(--mh-primary-deep);
  font-weight: 700;
}

/* Smaller custom checkbox/radio in the sidebar */
body#category #left-column .custom-checkbox,
body#category #left-column .custom-radio {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

body#category #left-column .custom-checkbox input[type="checkbox"],
body#category #left-column .custom-radio input[type="radio"] {
  width: 14px;
  height: 14px;
}

body#category #left-column .magnitude {
  margin-left: auto;
  font-size: 11px;
  color: var(--mh-muted);
  font-weight: 500;
}

body#category #left-column .js-search-filters-clear-all,
body#category #left-column .btn-tertiary {
  width: 100%;
  background: var(--mh-ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body#category #left-column .js-search-filters-clear-all:hover { background: var(--mh-primary); }

/* Hide the "Filtre" pill in toolbar on desktop (sidebar is already visible) */
@media (min-width: 992px) {
  .mh-cat-toolbar { display: none; }
}

/* ---------- Hero ---------- */

.mh-cat-hero { margin: 0.5rem 0 1.25rem; }

.mh-cat-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mh-cat-hero__banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--mh-rose) 0%, var(--mh-lilac) 100%);
  aspect-ratio: 2.5 / 1;
  min-height: 110px;
  max-height: 220px;
}

@media (min-width: 576px) {
  .mh-cat-hero__banner { aspect-ratio: 4 / 1; border-radius: 16px; }
}

@media (min-width: 992px) {
  .mh-cat-hero__banner { aspect-ratio: 6 / 1; border-radius: 18px; }
}

.mh-cat-hero__banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mh-cat-hero__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.25rem;
}

.mh-cat-hero__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 0.85rem;
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--mh-ink);
  margin: 0;
}

.mh-cat-hero__title-name { text-transform: none; }

.mh-cat-hero__title-count {
  font-family: var(--mh-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--mh-muted);
  letter-spacing: 0;
}

.mh-cat-hero__desc {
  position: relative;
  max-width: 780px;
  font-size: 14.5px;
  color: var(--mh-plum-soft);
  line-height: 1.55;
}

.mh-cat-hero__desc-clip {
  max-height: 3.3em;
  overflow: hidden;
  position: relative;
}

.mh-cat-hero__desc-clip::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1.4em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.mh-cat-hero__desc.is-open .mh-cat-hero__desc-clip { max-height: none; }
.mh-cat-hero__desc.is-open .mh-cat-hero__desc-clip::after { display: none; }

.mh-cat-hero__desc-toggle {
  margin-top: 0.35rem;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--mh-primary-deep);
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- Subcategory chips ---------- */

.mh-cat-chips { position: relative; margin-top: 0.25rem; }

.mh-cat-chips__track {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.25rem 0.25rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.mh-cat-chips__track::-webkit-scrollbar { height: 6px; }
.mh-cat-chips__track::-webkit-scrollbar-thumb { background: var(--mh-line); border-radius: 6px; }

.mh-cat-chips__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem 0.4rem 0.4rem;
  background: #fff;
  border: 1.5px solid var(--mh-border);
  border-radius: 999px;
  color: var(--mh-ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(15, 15, 15, 0.05);
  transition: all 0.15s ease;
}

.mh-cat-chips__chip:hover {
  background: var(--mh-rose);
  border-color: var(--mh-primary);
  color: var(--mh-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 61, 154, 0.18);
}

.mh-cat-chips__thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mh-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mh-cat-chips__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mh-cat-chips__label { line-height: 1; }

/* ---------- Toolbar (sticky filter + sort) ---------- */

.mh-cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0;
  margin: 0.25rem 0 1.25rem;
  background: #fff;
  border-top: 1px solid var(--mh-line);
  border-bottom: 1px solid var(--mh-line);
}

/* Only sticky on desktop — avoids overlap with mobile floating pill header */
@media (min-width: 992px) {
  .mh-cat-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
  }
}

.mh-cat-toolbar__left,
.mh-cat-toolbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mh-cat-toolbar__filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--mh-ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.mh-cat-toolbar__filter:hover { background: var(--mh-primary); transform: translateY(-1px); }
.mh-cat-toolbar__filter i { font-size: 16px; }

.mh-cat-toolbar__filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--mh-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 0.15rem;
}

.mh-cat-toolbar__count {
  color: var(--mh-muted);
  font-size: 13px;
  font-weight: 500;
}

.mh-cat-toolbar__sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mh-cat-toolbar__sort-label {
  color: var(--mh-muted);
  font-size: 13px;
  font-weight: 600;
}

.mh-cat-toolbar__sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--mh-border);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--mh-ink);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.mh-cat-toolbar__sort-btn:hover {
  border-color: var(--mh-primary);
  color: var(--mh-primary-deep);
}

.mh-cat-toolbar__sort-btn i { font-size: 14px; }

.mh-cat-toolbar__sort-menu {
  border-radius: 14px;
  border: 1px solid var(--mh-border);
  box-shadow: 0 14px 32px rgba(15, 15, 15, 0.08);
  padding: 0.4rem;
  min-width: 220px;
}

.mh-cat-toolbar__sort-menu .dropdown-item {
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mh-ink);
}

.mh-cat-toolbar__sort-menu .dropdown-item:hover {
  background: var(--mh-rose);
  color: var(--mh-primary-deep);
}

.mh-cat-toolbar__sort-menu .dropdown-item.current,
.mh-cat-toolbar__sort-menu .dropdown-item[aria-current="true"] {
  background: var(--mh-ink);
  color: #fff;
}

@media (max-width: 575.98px) {
  .mh-cat-toolbar__sort-label { display: none; }
  .mh-cat-toolbar__count { display: none; }
  .mh-cat-toolbar { padding: 0.5rem 0; gap: 0.4rem; }
  .mh-cat-toolbar__left,
  .mh-cat-toolbar__right { gap: 0.4rem; min-width: 0; }
  .mh-cat-toolbar__filter,
  .mh-cat-toolbar__sort-btn {
    padding: 0.5rem 0.85rem;
    font-size: 12.5px;
  }
  .mh-cat-toolbar__filter { flex: 0 0 auto; }
  .mh-cat-toolbar__sort-btn { max-width: 60vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mh-cat-toolbar__sort-btn > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
  .mh-cat-toolbar__sort-menu { min-width: min(280px, calc(100vw - 1.5rem)); }
}

/* ---------- Active filters chips ---------- */

body#category .active-filters,
body#category .js-active-search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

body#category .active-filter-title { display: none; }

body#category .filter-block {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--mh-rose);
  border: 1px solid var(--mh-primary-soft);
  color: var(--mh-primary-deep);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 12.5px;
  font-weight: 700;
}

body#category .filter-block .close,
body#category .filter-block .js-search-filters-clear {
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Product grid (sized to the center column next to the filter rail) ---------- */

body#category #products .products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  body#category #products .products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  body#category #products .products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem 1rem; }
}

/* ---------- Pagination Boozt-style ---------- */

body#category .products__pagination {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 1rem;
}

body#category .pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--mh-cream);
  border-radius: 999px;
  border: 1px solid var(--mh-border);
}

body#category .pagination .page-item .page-link,
body#category .pagination a {
  border: 0;
  background: transparent;
  color: var(--mh-ink);
  font-weight: 700;
  font-size: 13.5px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 0.6rem;
}

body#category .pagination .page-item.active .page-link,
body#category .pagination .current .page-link,
body#category .pagination .current a {
  background: var(--mh-ink);
  color: #fff;
}

body#category .pagination .page-link:hover { background: var(--mh-rose); color: var(--mh-primary-deep); }

/* ---------- Category SEO footer ---------- */

.mh-cat-seo {
  margin: 2rem 0 3rem;
  padding: 1.75rem;
  background: var(--mh-cream);
  border: 1px solid var(--mh-border);
  border-radius: 18px;
}

.mh-cat-seo__inner {
  max-width: 920px;
  margin: 0 auto;
  color: var(--mh-plum-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

.mh-cat-seo__inner h2,
.mh-cat-seo__inner h3 {
  font-family: var(--mh-font-heading);
  color: var(--mh-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 1.25rem;
}

.mh-cat-seo__inner h2:first-child,
.mh-cat-seo__inner h3:first-child { margin-top: 0; }

/* ---------- Tight density for product cards in category ---------- */

body#category .mh-card { border-radius: 14px; }
body#category .mh-card__body { padding: 0.65rem 0.7rem 0.85rem; }
body#category .mh-card__brand { font-size: 11px; letter-spacing: 0.08em; }
body#category .mh-card__name { font-size: 13.5px; line-height: 1.3; }
body#category .mh-card__price { font-size: 15px; }

/* ============================================================
   PDP v3 — Coolshop structure (bordered buy-box card,
   green stock block, Trustpilot Fremragende, stacked USPs,
   horizontal recommendation rails) · MyHair pink/plum brand
   ============================================================ */

/* Hide old USP grid (still in cache for some pages) — new layout uses mh-usps-stack */
.product__right .mh-usps { display: none; }

/* Trustpilot Fremragende badge line under H1 */
.mh-tp-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin: 0.5rem 0 1.25rem;
}
.mh-tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  color: var(--mh-plum);
  font-weight: 600;
  transition: border-color .15s ease;
}
.mh-tp-badge:hover { border-color: var(--mh-tp-green); }
.mh-tp-badge__label {
  font-weight: 700;
  letter-spacing: -0.005em;
}
.mh-tp-badge__stars {
  display: inline-flex;
  gap: 1px;
}
.mh-tp-badge__star {
  width: 14px;
  height: 14px;
  background: var(--mh-tp-green);
  display: inline-block;
  position: relative;
}
.mh-tp-badge__star::after {
  content: "★";
  position: absolute;
  inset: 0;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}
.mh-tp-badge__logo {
  font-weight: 700;
  color: var(--mh-tp-green);
  font-size: 11.5px;
  letter-spacing: -0.01em;
}

.mh-pdp__rating-link {
  margin: 0;
  font-size: 12.5px;
}
.mh-pdp__rating-stars { display: none; } /* superseded by mh-tp-badge */

/* Buy-box card (Coolshop pattern: bordered card around price + stock + ATC) */
.mh-buybox {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 1px 4px rgba(15,15,15,0.04);
  margin-bottom: 0.75rem;
}
.mh-buybox .product__prices { margin: 0 0 1rem; }
.mh-buybox .product__price { font-size: 2.1rem; }

/* Green stock + delivery block at top of buy-box card */
.mh-stockblock {
  background: #F0F9F2;
  border: 1px solid #C9EAD2;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mh-stockblock__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 13.5px;
  color: var(--mh-plum);
  line-height: 1.3;
}
.mh-stockblock__row strong {
  font-weight: 700;
}
.mh-stockblock__icon {
  width: 18px;
  height: 18px;
  color: #1F8F4C;
  flex-shrink: 0;
}
.mh-stockblock__row--stock {
  font-size: 14.5px;
}
.mh-stockblock__row--stock strong {
  color: #1F8F4C;
}

/* ============================================================
   CRO urgency strip — live viewers, low-stock meter, cutoff
   ============================================================ */
.mh-urgency {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 6px;
}
.mh-urgency__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--mh-plum-soft);
  line-height: 1.3;
}
.mh-urgency__row strong { font-weight: 700; color: var(--mh-plum); }

/* Live viewers — pulsing green dot */
.mh-urgency__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1F8F4C;
  flex-shrink: 0;
  position: relative;
}
.mh-urgency__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(31, 143, 76, 0.35);
  animation: mh-pulse 2s ease-out infinite;
}
@keyframes mh-pulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Low-stock meter */
.mh-urgency__stock { flex-wrap: wrap; gap: 0.35rem 0.6rem; }
.mh-urgency__stock strong { color: var(--mh-orange); }
.mh-urgency__bar {
  flex: 1 1 100%;
  height: 6px;
  border-radius: 999px;
  background: #F0E0EA;
  overflow: hidden;
  order: 2;
}
.mh-urgency__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mh-orange), #FF8A3D);
}
.mh-urgency__stock > span { order: 1; }

/* Cutoff row */
.mh-urgency__cutoff svg { width: 16px; height: 16px; color: var(--mh-primary-deep); flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .mh-urgency__dot::after { animation: none; }
}

/* Payment icons inside buy box (no label, just icons row) */
.mh-buybox .mh-payment-icons {
  padding: 0.75rem 0 0;
  margin-top: 0.75rem;
  border-top: 1px solid var(--mh-line);
  justify-content: flex-start;
}

/* USPs — single bordered container, row separators (Coolshop minimal style) */
.mh-usps-stack {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 6px;
  overflow: hidden;
}
.mh-usps-stack__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.85rem;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--mh-line);
  border-radius: 0;
  padding: 0.85rem 1rem;
}
.mh-usps-stack__item:last-child { border-bottom: 0; }

.mh-usps-stack__icon {
  width: 22px;
  height: 22px;
  color: var(--mh-plum);
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex-shrink: 0;
}

.mh-usps-stack__text {
  font-size: 15px;
  color: var(--mh-plum);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.mh-usps-stack__text strong {
  display: inline;
  font-weight: 700;
  color: var(--mh-plum);
  margin-right: 0.15rem;
}

/* Quantity+ATC stays compact inside the card */
.mh-buybox .product-quantity { margin: 1rem 0 0; }

/* Mobile collapse */
@media (max-width: 900px) {
  .product__container.product-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .mh-buybox { padding: 1.25rem; }
  .mh-usps-stack__item { grid-template-columns: 22px 1fr; padding: 0.75rem 0.85rem; }
}

/* ============================================================
   HORIZONTAL RECOMMENDATION RAILS (Coolshop pattern)
   Scrollable, snap-to-card, with prev/next nav buttons
   ============================================================ */
.mh-rail {
  max-width: 1450px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  position: relative;
}

/* 50px breathing room under the "Besøgte produkter" rail */
.mh-rail[data-mh-rail="viewed"] {
  margin-bottom: 50px;
}
.mh-rail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1.25rem;
  gap: 1rem;
}
.mh-rail__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0;
}
.mh-rail__nav {
  display: inline-flex;
  gap: 0.4rem;
}
.mh-rail__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-plum);
  cursor: pointer;
  transition: all .15s ease;
}
.mh-rail__btn:hover { background: var(--mh-rose); border-color: var(--mh-primary); color: var(--mh-primary-deep); }
.mh-rail__btn svg { width: 16px; height: 16px; }

.mh-rail__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  scroll-padding: 0 1rem;
}
.mh-rail__track::-webkit-scrollbar { display: none; }

.mh-rail__item {
  flex: 0 0 calc((100% - 4rem) / 5);
  min-width: 170px;
  max-width: 240px;
  scroll-snap-align: start;
}

/* Tighter card density inside rails */
.mh-rail__item .product-miniature,
.mh-rail__item .js-product-miniature {
  margin: 0;
  width: 100%;
}
.mh-rail__item .thumbnail-container,
.mh-rail__item .thumbnail {
  background: #F7F7F5;
  border-radius: 6px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.mh-rail__item .thumbnail img,
.mh-rail__item .product-thumbnail img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.mh-rail__item .product-title,
.mh-rail__item .product-description {
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}
.mh-rail__item .product-title a {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mh-rail__item .product-price-and-shipping {
  padding: 0 0.25rem;
}

@media (max-width: 1100px) {
  .mh-rail__item { flex-basis: calc((100% - 2rem) / 3); }
}
@media (max-width: 768px) {
  .mh-rail { padding: 0 0.85rem; }
  .mh-rail__item { flex-basis: 48%; min-width: 0; }
  .mh-rail__nav { display: none; }
}
@media (max-width: 480px) {
  .mh-rail__item { flex-basis: 70%; }
}

/* Hide the old hero pair styles since rails replaced them — preserves
   anything else that might reference them on other pages */
.product__bottom-right { display: none; }

/* Accordion now lives INSIDE the right column (Coolshop sidebar pattern) */
.product__right .mh-pdp-info {
  margin: 0.5rem 0 0;
  max-width: none;
}
.product__right .mh-acc {
  width: 100%;
}
.product__right .mh-acc .accordion-button {
  font-size: 14.5px;
  padding: 1.1rem 0;
}
.product__right .mh-acc .accordion-body {
  font-size: 13.5px;
  padding-bottom: 1.25rem;
}
.product__right .mh-acc .accordion-body p {
  margin-bottom: 0.5rem;
}

/* Image column: don't be sticky if right column is much taller —
   sticky still helps but we cap the image so it doesn't dominate */
.product__left {
  align-self: start;
}

/* Productcomments block inside accordion: trim its own header (we already
   have the accordion title), keep the rest compact */
.mh-reviews-stub .product-comments-wrapper { margin: 0; }
.mh-reviews-stub #product-comments-list-header {
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 0.75rem;
}
.mh-reviews-stub #product-comments-list-header h2.section-title {
  display: none; /* "Anmeldelser (0)" is in the accordion header already */
}
.mh-reviews-stub .empty-product-comment,
.mh-reviews-stub #empty-product-comment {
  text-align: left;
  padding: 0;
}
.mh-reviews-stub #product-comments-list-btn-group {
  margin-top: 0.75rem;
}
.mh-reviews-stub #product-comments-list-review-button {
  background: var(--mh-plum);
  border-color: var(--mh-plum);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.25rem;
  border-radius: 4px;
}
.mh-reviews-stub #product-comments-list-review-button:hover {
  background: var(--mh-primary);
  border-color: var(--mh-primary);
}

/* ============================================================
   Boozt-style category — tablet + mobile refinements
   ============================================================ */

/* Tablet (768–991px): sidebar is hidden, slight breathing tweak */
@media (min-width: 768px) and (max-width: 991.98px) {
  .mh-cat-hero { margin-top: 0.75rem; }
  body#category #products .products { gap: 1rem; }
}

/* Mobile (≤767px): tighten everything */
@media (max-width: 767.98px) {
  body#category .breadcrumb__wrapper { padding-top: 0.65rem; }
  body#category .breadcrumb { font-size: 11.5px; }

  .mh-cat-hero { margin: 0.25rem 0 0.85rem; }
  .mh-cat-hero__inner { gap: 0.85rem; }
  .mh-cat-hero__head { padding: 0; gap: 0.35rem; }
  .mh-cat-hero__title { font-size: 1.65rem; gap: 0.35rem 0.5rem; }
  .mh-cat-hero__title-count { font-size: 0.85rem; }
  .mh-cat-hero__desc { font-size: 13.5px; line-height: 1.5; }

  /* Hide native scrollbar on chips track for a cleaner mobile feel */
  .mh-cat-chips__track {
    padding: 0.2rem 0.25rem 0.5rem;
    gap: 0.45rem;
    scrollbar-width: none;
  }
  .mh-cat-chips__track::-webkit-scrollbar { display: none; }
  .mh-cat-chips__chip { font-size: 12.5px; padding: 0.4rem 0.85rem 0.4rem 0.4rem; }
  .mh-cat-chips__thumb { width: 26px; height: 26px; }

  body#category .active-filters,
  body#category .js-active-search-filters { margin: 0 0 0.65rem; }

  /* 2-column grid with tighter gap on narrow phones */
  body#category #products .products { gap: 0.65rem; }
  body#category .mh-card__body { padding: 0.55rem 0.6rem 0.75rem; }
  body#category .mh-card__name { font-size: 12.5px; }
  body#category .mh-card__brand { font-size: 10px; }
  body#category .mh-card__price { font-size: 14px; }
  body#category .mh-card__rating,
  body#category .mh-card__stock { font-size: 11px; }

  /* Pagination — let it wrap, smaller buttons */
  body#category .products__pagination { margin: 1.75rem 0 0.5rem; }
  body#category .pagination { flex-wrap: wrap; justify-content: center; row-gap: 0.25rem; }
  body#category .pagination .page-item .page-link,
  body#category .pagination a {
    min-width: 32px;
    height: 32px;
    font-size: 12.5px;
    padding: 0 0.5rem;
  }

  /* SEO footer */
  .mh-cat-seo { margin: 1.5rem 0 2rem; padding: 1.1rem 1rem; border-radius: 14px; }
  .mh-cat-seo__inner { font-size: 13.5px; }
}

/* Very small phones (≤360px) */
@media (max-width: 360px) {
  .mh-cat-hero__title { font-size: 1.45rem; }
  .mh-cat-toolbar__filter span,
  .mh-cat-toolbar__sort-btn > span { font-size: 12px; }
}

/* ============================================================
   MOBILE + TABLET RESPONSIVE PASS (frontpage + global)
   ============================================================ */

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
  :root { --bz-pad: 1rem; }

  /* Header: hide visible search input, show mobile-friendly tappable search trigger */
  .mh-header__inner { gap: 0.75rem; padding: 0.8rem 1rem; }
  .mh-header__brand-img { height: 38px; }
  .mh-header__search { height: 40px; max-width: 100%; }
  .mh-header__search-input { font-size: 14px; }

  /* Trust bar: shorter row */
  .bm-tb-wrap { padding: 0.3rem 1rem; font-size: 11px; gap: 1rem; }
  .bm-tb-right { gap: 1rem; font-size: 11px; }

  /* Nav: smaller padding, allow wrap */
  .mh-nav__link { padding: 0.55rem 0.55rem; font-size: 12.5px; }

  /* Hero billboard: better mobile crop */
  .mh-billboard__img,
  .mh-billboard--full img { aspect-ratio: 21 / 9; object-fit: cover; }

  /* Round circles: smaller bubbles (col count handled by main rule above) */
  .mh-circles { padding: 0.5rem 0 0.4rem; }
  .mh-circles__bubble { max-width: 108px; }
  .mh-circles__label { font-size: 12px; }

  /* Banner grids: tighter */
  .mh-bzgrid { gap: 0.5rem; margin-bottom: 1rem; }
  .mh-campaigns__grid { gap: 0.75rem; }
  .mh-campaigns__title { font-size: 1rem; }
  .mh-campaigns__lede { font-size: 13px; }

  /* Chiplinks: 3 cols, tighter */
  .mh-chiplinks { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .mh-chiplinks a { height: 56px; font-size: 12.5px; }

  /* Product carousels: 3-up */
  .mh-hookhome .products,
  .mh-hookhome .swiper-wrapper,
  .mh-hookhome ul.products,
  .mh-hookhome [class*="product-list"],
  .mh-grid--6 { grid-template-columns: repeat(3, 1fr) !important; }

  .mh-hookhome { padding: 2rem 0 !important; }
  .mh-hookhome .section-title,
  .mh-hookhome h2 { font-size: 1.35rem !important; margin-bottom: 1rem !important; }
  .mh-hookhome .mh-container > section,
  .mh-hookhome .mh-container > div { margin-bottom: 2.5rem !important; }

  /* USP service strip: 2x2 grid */
  .mh-bzusp { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; padding: 3rem 1rem; }

  /* Brand grid: 4 cols */
  .mh-bzbrands__grid { grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
  .mh-bzbrands__tile { height: 110px; padding: 0.85rem; }
  .mh-bzbrands__logo { max-height: 40px; }
  .mh-bzbrands__name { font-size: 11px; }

  /* Reviews section */
  .mh-reviews-section__head { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding-bottom: 2rem; margin-bottom: 2rem; }
  .mh-reviews-section__big { font-size: 3rem; }
  .mh-reviews-section__title-block { align-items: center; }
  .mh-reviews-cards { grid-template-columns: repeat(2, 1fr); }

  /* Newsletter */
  .mh-newsletter__form { flex-direction: column; padding: 0.75rem; max-width: 100%; gap: 0.5rem; }
  .mh-newsletter__btn { width: 100%; }

  /* Footer */
  .mh-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1rem; }
  .mh-footer__linkgrid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .mh-footer__bottom-row { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 0 1rem; }
  .mh-footer__pays { gap: 0.6rem; flex-wrap: wrap; }
  .mh-footer__pay-logo { height: 20px; }
  .mh-footer__pay-logo--ship { height: 18px; }

  /* Pre-footer */
  .mh-pre-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ---------- Mobile (≤640px) ---------- */
@media (max-width: 640px) {
  :root { --bz-pad: 0.85rem; }
  html, body { font-size: 15px; }

  /* Trust bar: collapse to single line, hide right links */
  .bm-tb-right { display: none; }
  .bm-tb-wrap { justify-content: center; flex-wrap: wrap; padding: 0.3rem 0.75rem; font-size: 10.5px; gap: 0.5rem; }

  /* Mobile header: burger + centered logo + icons on top row,
     full-width search below */
  .mh-header__inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    grid-template-rows: auto auto;
    grid-template-areas:
      "toggle logo icons"
      "search search search";
    padding: 0.6rem 0.75rem;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
    align-items: center;
  }
  .mh-header__brand {
    grid-area: logo;
    justify-self: center !important;
  }
  .mh-header__icons {
    grid-area: icons;
    gap: 0.1rem !important;
    display: inline-flex !important;
    flex-wrap: nowrap;
    justify-self: end !important;
  }
  .mh-header__brand-img { height: 32px; }
  /* Hide account icon on mobile — only wishlist + cart */
  .mh-header__icons > a[aria-label="Min konto"],
  .mh-header__icons > a:first-child:not([aria-label*="ønske"]):not([aria-label*="urv"]) {
    display: none;
  }
  .mh-header__icon-btn { width: 36px !important; height: 36px !important; padding: 0.3rem !important; }
  .mh-header__icon-btn .ph { font-size: 20px; }

  /* Mobile hamburger — left of the centered logo */
  .mh-header__mobile-toggle {
    grid-area: toggle !important;
    display: inline-flex !important;
    justify-self: start !important;
  }

  /* Full-width search BELOW the icon row */
  .mh-header__search {
    display: flex !important;
    grid-area: search;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 42px;
    border-radius: 0 !important;
  }
  .mh-header__search-input { font-size: 14px; }

  /* Nav: compact horizontal scroll bar, no wrap */
  .mh-nav__inner { padding: 0 0.5rem; }
  .mh-nav__list { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; gap: 0; padding-bottom: 0; }
  .mh-nav__list::-webkit-scrollbar { display: none; }
  .mh-nav__link { padding: 0.4rem 0.55rem; font-size: 11.5px; white-space: nowrap; }

  /* Hero billboard */
  .mh-billboard--full img { aspect-ratio: 16 / 10; }

  /* Round circles: horizontal scroll on small screens */
  .mh-circles { padding: 0.45rem 0 0.35rem; }
  .mh-circles__inner {
    grid-template-columns: repeat(12, minmax(92px, 1fr));
    gap: 0.65rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
  }
  .mh-circles__bubble { max-width: 84px; }
  .mh-circles__label { font-size: 11px; }

  /* Aktuelle kampagner: 2 cols, centered header */
  .mh-campaigns { padding: 0 0.85rem; }
  .mh-campaigns__head { margin-bottom: 0.85rem; text-align: center; }
  .mh-campaigns__head h2 { font-size: 1.4rem; }
  .mh-campaigns__head p { font-size: 13px; }
  .mh-campaigns__grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .mh-campaigns__title { font-size: 0.95rem; }
  .mh-campaigns__lede { font-size: 12.5px; -webkit-line-clamp: 2; line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .mh-campaigns__date { font-size: 10.5px; }

  /* Banner grids: full-width stack */
  .mh-bzgrid--4, .mh-bzgrid--2sq, .mh-bzgrid--3, .mh-bzgrid--4p, .mh-bzgrid--2ld {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
    padding: 0 0.85rem;
  }
  .mh-bzgrid--2ld .mh-bzgrid__tile { aspect-ratio: 2 / 1; }

  /* Editorial duo: stack */
  .mh-bzasy { grid-template-columns: 1fr; gap: 0.5rem; padding: 0 0.85rem; }
  .mh-bzasy__card { min-height: 220px; aspect-ratio: 16 / 9; }
  .mh-bzasy__overlay { padding: 1.25rem; }
  .mh-bzasy__title { font-size: 1.25rem; }

  /* Chiplinks: 2 cols */
  .mh-chiplinks { grid-template-columns: repeat(2, 1fr); gap: 0.45rem; padding: 0 0.85rem; }
  .mh-chiplinks a { height: 48px; font-size: 12px; }

  /* Product carousels: 2-up grid */
  .mh-hookhome .mh-container { padding: 0 0.85rem; }
  .mh-hookhome .products,
  .mh-hookhome .swiper-wrapper,
  .mh-hookhome ul.products,
  .mh-hookhome [class*="product-list"],
  .mh-grid--6 { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }

  .mh-hookhome { padding: 1.5rem 0 !important; }
  .mh-hookhome .section-title,
  .mh-hookhome h2 { font-size: 1.2rem !important; margin-bottom: 0.85rem !important; }
  .mh-hookhome .mh-container > section,
  .mh-hookhome .mh-container > div { margin-bottom: 2rem !important; }

  /* Product card tighter */
  .mh-card__media { padding: 0.75rem; }
  .mh-card__media-link { padding: 0.85rem; }
  .mh-card__body { padding: 0.6rem 0 0.3rem; }
  .mh-card__name { font-size: 12.5px; min-height: 2.5em; }
  .mh-card__price { font-size: 14px; }
  .mh-card__was { font-size: 11px; }
  .mh-card__badge { font-size: 11px; padding: 0.2rem 0.4rem; top: 0.35rem; left: 0.35rem; }
  .mh-card__actions { bottom: 0.35rem; right: 0.35rem; gap: 0.2rem; }
  .mh-card__buy, .bm-wishlist-btn-mini, .mh-card__wish { width: 30px; height: 30px; }
  .mh-card__rating { margin-bottom: 0.15rem; }

  /* Thin strips */
  .mh-bzstrip { padding: 0 0.85rem; }
  .mh-bzstrip img { height: 110px; }
  .mh-bzstrip__overlay { font-size: 13px; padding: 0 1rem; }
  .mh-bzstrip--thin .mh-bzstrip__solid { height: 78px; font-size: 13px; }

  /* USP service strip: 1 col stacked */
  .mh-bzusp { grid-template-columns: 1fr; gap: 1.25rem; padding: 2.25rem 0.85rem; }
  .mh-bzusp__card { padding: 0; }
  .mh-bzusp__card h4 { font-size: 14px; }
  .mh-bzusp__card p { font-size: 12.5px; }

  /* Brand grid: 3 cols */
  .mh-bzbrands { padding: 0 0.85rem; margin: 1rem auto 2rem; }
  .mh-bzbrands__head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .mh-bzbrands__head h3 { font-size: 1.05rem; }
  .mh-bzbrands__grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .mh-bzbrands__tile { height: 90px; padding: 0.6rem; }
  .mh-bzbrands__logo { max-height: 32px; }
  .mh-bzbrands__name { font-size: 10.5px; }

  /* Pre-footer: 1 col */
  .mh-pre-footer { padding: 2.5rem 0 1.5rem; }
  .mh-pre-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; padding: 0 0.85rem; }

  /* Reviews */
  .mh-reviews-section { padding: 2.5rem 0; }
  .mh-reviews-section__big { font-size: 2.5rem; }
  .mh-reviews-section__title { font-size: 1.4rem; }
  .mh-reviews-cards { grid-template-columns: 1fr; gap: 0.6rem; }
  .mh-reviews-card { padding: 1.25rem 1.1rem 1.1rem; }
  .mh-reviews-card__quote { font-size: 13.5px; }

  /* Newsletter */
  .mh-newsletter { padding: 2.5rem 0; }
  .mh-newsletter__inner { padding: 0 1rem; }
  .mh-newsletter__title { font-size: 1.6rem; }
  .mh-newsletter__lede { font-size: 14px; }

  /* Footer */
  .mh-footer { padding-top: 2.25rem; }
  .mh-footer__inner { padding: 0 0.85rem; }
  .mh-footer__grid { gap: 2rem; padding: 0; padding-bottom: 2rem; }
  .mh-footer__brand-img { height: 44px; }
  .mh-footer__linkgrid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .mh-footer__heading { font-size: 12px; }
  .mh-footer__list a { font-size: 12px; }
  .mh-footer__email { font-size: 16px; }
  .mh-footer__bottom-row { padding: 0 0.85rem; gap: 0.85rem; }
  .mh-footer__pays { gap: 0.45rem; }
  .mh-footer__pay-logo { height: 18px; }
  .mh-footer__pay-logo--ship { height: 16px; }
  .mh-footer__legal { gap: 0.85rem; flex-wrap: wrap; }
  .mh-footer__legal a { font-size: 11.5px; }
  .mh-footer__copy { font-size: 11.5px; }

  /* Floating pill: mobile keeps brand + icons only */
  .mh-floating { top: 0.5rem; padding: 0 0.5rem; }
  .mh-floating__pill { padding: 0.45rem 0.5rem 0.45rem 0.85rem; }
  .mh-floating__brand img { height: 28px; }
  .mh-floating__icons a { width: 36px; height: 36px; }
  .mh-floating__icons i { font-size: 18px; }
}

/* ---------- Small mobile (≤400px) ---------- */
@media (max-width: 400px) {
  .mh-campaigns__grid { grid-template-columns: 1fr; }
  .mh-bzbrands__grid { grid-template-columns: repeat(2, 1fr); }
  .mh-chiplinks { grid-template-columns: repeat(2, 1fr); }
  .mh-hookhome .products,
  .mh-hookhome .swiper-wrapper,
  .mh-hookhome ul.products,
  .mh-hookhome [class*="product-list"],
  .mh-grid--6 { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Prevent any horizontal overflow — use `clip` (not `hidden`) so
   position: sticky keeps working on descendants (PDP image column) */
html, body { overflow-x: clip; }

/* ============================================================
   Boozt-style category — final polish
   ============================================================ */

/* Tighter breadcrumb→hero gap */
body#category .breadcrumb__wrapper { padding: 0.4rem 0 0 !important; }
body#category .mh-cat-hero { margin-top: 0 !important; }
body#category #main-content { display: none; }

/* Title row: H1 left, sort dropdown right */
.mh-cat-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
}

.mh-cat-hero__sort {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}

.mh-cat-hero__sort .mh-cat-toolbar__sort-btn { padding: 0.45rem 0.9rem; }

@media (max-width: 575.98px) {
  /* Keep title left, sort compact on the right (no full-width stretch) */
  .mh-cat-hero__row { gap: 0.4rem 0.6rem; align-items: center; }
  .mh-cat-hero__title { flex: 1 1 auto; min-width: 0; }
  .mh-cat-hero__sort { width: auto; margin-left: auto; flex: 0 0 auto; }
  .mh-cat-hero__sort .mh-cat-toolbar__sort-btn { width: auto; }
}

/* Hide "Viser 1-X af Y element(er)" pagination summary */
body#category .pagination__number { display: none !important; }
body#category .pagination__container { justify-content: center; }

/* ============================================================
   SEO TEXT BLOCK (below brand grid)
   ============================================================ */

.mh-seo {
  background: #FAFAFA;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.mh-seo__inner {
  max-width: var(--bz-max);
  margin: 0 auto;
  padding: 0 var(--bz-pad);
}

.mh-seo__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mh-seo__eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mh-muted);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.mh-seo__title {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 auto 0.85rem;
  color: var(--mh-plum);
  max-width: 36ch;
}
.mh-seo__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mh-plum-soft);
  margin: 0 auto;
  max-width: 56ch;
}

/* Editorial SEO prose — two text columns, no cards/icons/boxes */
.mh-seo__text {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 3.25rem;
}
.mh-seo__point h3 {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--mh-plum);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.mh-seo__point p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mh-plum-soft);
  margin: 0;
}

@media (max-width: 700px) {
  .mh-seo { padding: 2.5rem 0; }
  .mh-seo__head { margin-bottom: 1.6rem; text-align: left; }
  .mh-seo__title { font-size: 1.4rem; margin-left: 0; }
  .mh-seo__lede { font-size: 13.5px; margin-left: 0; }
  .mh-seo__text { grid-template-columns: 1fr; gap: 1.4rem; }
  .mh-seo__point p { font-size: 13.5px; }
}

/* ============================================================
   GLOBAL PRESTASHOP PAGE POLISH
   Covers: cart, checkout, login, register, my-account,
   order-detail, contact, CMS, search, 404, brand list, etc.
   ============================================================ */

/* ---------- Page wrapper + header ---------- */

#main, #content, .page-content, .page-wrapper {
  font-family: var(--mh-font-body);
  color: var(--mh-plum);
}

#wrapper { background: #FFFFFF; }

.page-header {
  border-bottom: 1px solid var(--mh-line);
  padding: 0 0 1.25rem;
  margin: 1.5rem 0 2rem;
}

.page-header h1,
.page-header .h1,
.page-title {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  letter-spacing: -0.025em;
  color: var(--mh-plum);
  line-height: 1.1;
  margin: 0;
}

.page-subheading,
.page-content h2,
.page-content .h2 {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 1.5rem 0 1rem;
}

.page-content h3,
.page-content .h3 {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--mh-plum);
  margin: 1.25rem 0 0.75rem;
}

.page-content p { line-height: 1.65; color: var(--mh-plum-soft); }

#main { padding: 0 0 4rem; }

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin: 0 0 0.5rem;
  font-size: 12.5px;
  color: var(--mh-muted);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before {
  content: "/";
  color: var(--mh-muted);
  opacity: 0.5;
  margin: 0 0.4rem 0 0;
}
.breadcrumb a {
  color: var(--mh-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.breadcrumb a:hover { color: var(--mh-primary-deep); }
.breadcrumb li:last-child { color: var(--mh-plum); font-weight: 600; }

/* ---------- Forms (inputs, selects, labels) ---------- */

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
select,
textarea {
  font-family: var(--mh-font-body);
  font-size: 14.5px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  background: #FFFFFF;
  color: var(--mh-plum);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
  line-height: 1.4;
}

.form-control:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--mh-plum) !important;
  box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.08);
  outline: none;
}

select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F0F0F'><path d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px;
  appearance: none;
  padding-right: 2.25rem;
}

label, .form-control-label, .label {
  font-family: var(--mh-font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mh-plum);
  margin-bottom: 0.4rem;
  display: block;
}

.form-group { margin-bottom: 1.25rem; }

.form-control-comment,
.form-text,
.help-block {
  font-size: 12px;
  color: var(--mh-muted);
  margin-top: 0.3rem;
  line-height: 1.45;
}

input[type="checkbox"], input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  accent-color: var(--mh-primary);
  cursor: pointer;
}

.custom-checkbox label,
.custom-radio label {
  display: inline-flex;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--mh-plum);
  cursor: pointer;
  margin-bottom: 0;
}

/* Required / validation */
.form-control.is-invalid,
.form-control.has-error,
input.has-error, select.has-error, textarea.has-error {
  border-color: #E30613 !important;
  background-color: #FFF5F5;
}

.invalid-feedback, .form-control-comment.has-error {
  color: #E30613;
  font-size: 12px;
  margin-top: 0.3rem;
}

/* ---------- Buttons (global) ---------- */

.btn,
button.btn,
input[type="submit"].btn,
a.btn {
  font-family: var(--mh-font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, opacity .15s ease;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary, .btn.btn-primary,
button[type="submit"].btn,
input[type="submit"].btn-primary {
  background: var(--mh-plum) !important;
  color: #FFFFFF !important;
  border-color: var(--mh-plum) !important;
}

.btn-primary:hover, .btn.btn-primary:hover {
  background: var(--mh-primary) !important;
  border-color: var(--mh-primary) !important;
}

.btn-secondary, .btn.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--mh-plum);
  color: var(--mh-plum);
}

.btn-secondary:hover {
  background: var(--mh-plum);
  color: #FFFFFF;
}

.btn-outline-secondary {
  background: transparent;
  border: 1px solid var(--mh-border);
  color: var(--mh-plum);
}

.btn-outline-secondary:hover {
  background: var(--mh-cream);
  border-color: var(--mh-plum);
}

.btn-link {
  background: transparent;
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.25rem 0;
}

.btn-link:hover { color: var(--mh-primary-deep); }

/* Disabled state */
.btn:disabled, .btn.disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Cards / panels ---------- */

.card, .panel, .block, .info-block, .links-list {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  overflow: hidden;
}

.card-block, .card-body, .panel-body, .block-body {
  padding: 1.5rem;
}

.card-header, .panel-heading, .block-title, .block-header {
  background: #FAFAFA;
  border-bottom: 1px solid var(--mh-line);
  padding: 1rem 1.5rem;
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--mh-plum);
}

/* ---------- Alerts / notifications ---------- */

.alert, .notifications-success, .notifications-warning, .notifications-error, .notifications-info {
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 14px;
  border: 1px solid;
  line-height: 1.5;
}

.alert-success, .notifications-success {
  background: #ECFDF3;
  border-color: #ABEFC6;
  color: #027A48;
}

.alert-warning, .notifications-warning {
  background: #FFFAEB;
  border-color: #FEDF89;
  color: #B54708;
}

.alert-danger, .alert-error, .notifications-error {
  background: #FEF3F2;
  border-color: #FECDCA;
  color: #B42318;
}

.alert-info, .notifications-info {
  background: #F0F4FF;
  border-color: #C7D2FE;
  color: #3538CD;
}

/* ---------- Tables ---------- */

.table, table.table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  background: #FFFFFF;
}

.table th, .table td, table.table th, table.table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--mh-line);
  text-align: left;
}

.table th, table.table th {
  font-weight: 700;
  color: var(--mh-plum);
  background: #FAFAFA;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-striped tbody tr:nth-of-type(odd),
table.table-striped tbody tr:nth-of-type(odd) { background: #FAFAFA; }

.table tfoot td, table.table tfoot td {
  font-weight: 700;
  background: #FAFAFA;
  color: var(--mh-plum);
}

/* ---------- Pagination ---------- */

.pagination,
.page-list {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  justify-content: center;
}

.pagination .page-item,
.page-list li { display: inline-flex; }

.pagination .page-link,
.pagination a, .pagination span,
.page-list a, .page-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.85rem;
  border: 1px solid var(--mh-border);
  background: #FFFFFF;
  color: var(--mh-plum);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}

.pagination .page-link:hover,
.pagination a:hover { background: var(--mh-cream); border-color: var(--mh-plum); }

.pagination .page-item.active .page-link,
.pagination .current a,
.pagination .active a {
  background: var(--mh-plum);
  color: #FFFFFF;
  border-color: var(--mh-plum);
}

.pagination .disabled a { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-grid-body { min-width: 0; }

.cart-grid-right { position: sticky; top: 100px; }

.cart-overview, .cart-items {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.25rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--mh-line);
  align-items: center;
}

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

.cart-item img,
.cart-item .product-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #F4F4F2;
  border-radius: 4px;
  mix-blend-mode: multiply;
}

.product-line-info .label,
.product-line__name {
  font-family: var(--mh-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--mh-plum);
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0.25rem;
}

.product-line-info-link,
.product-line__name a {
  color: var(--mh-plum);
  text-decoration: none;
}

.product-line-info-link:hover,
.product-line__name a:hover { color: var(--mh-primary-deep); }

.product-line__brand,
.product-line-info-text {
  font-size: 11.5px;
  color: var(--mh-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-price,
.cart-item .product-price,
.product-line__total,
.total-amount {
  font-family: var(--mh-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--mh-plum);
}

.regular-price, .price-discount {
  color: var(--mh-muted);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 13px;
}

.cart-summary,
.cart-grid-right .card,
.cart-summary-line-list {
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  padding: 1.5rem;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 14px;
  color: var(--mh-plum-soft);
}

.cart-summary-line.cart-total,
.cart-total {
  border-top: 1px solid var(--mh-line);
  padding-top: 1rem;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 17px;
  color: var(--mh-plum);
}

.cart-summary-totals .label,
.cart-summary-line .label { font-weight: 500; text-transform: none; letter-spacing: 0; }

#main .cart-detailed-actions .btn,
.cart-summary .btn-primary,
.cart-grid-right .btn {
  width: 100%;
  padding: 1rem;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Quantity input in cart */
.qty-input-group, .input-group.bootstrap-touchspin {
  display: inline-flex;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  overflow: hidden;
}

.qty-input-group .form-control,
.input-group.bootstrap-touchspin input {
  width: 50px;
  border: 0;
  text-align: center;
  font-weight: 600;
  padding: 0.5rem 0;
}

.qty-input-group button,
.bootstrap-touchspin .btn,
.bootstrap-touchspin .input-group-btn-vertical .btn {
  background: #FAFAFA;
  border: 0;
  color: var(--mh-plum);
  padding: 0 0.85rem;
  cursor: pointer;
  border-radius: 0;
}

.qty-input-group button:hover { background: var(--mh-cream); }

@media (max-width: 900px) {
  .cart-grid { grid-template-columns: 1fr; }
  .cart-grid-right { position: static; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.checkout-step,
.js-checkout-step {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.checkout-step .step-title,
.step-title {
  padding: 1.25rem 1.5rem;
  margin: 0;
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--mh-plum);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}

.step-number,
.checkout-step .step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--mh-plum);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-step.-current,
.checkout-step.-current .step-title { border-color: var(--mh-plum); }

.checkout-step.-complete .step-number { background: var(--mh-tp-green); }

.step-content,
.checkout-step .content {
  padding: 1.5rem;
  border-top: 1px solid var(--mh-line);
}

.payment-option,
.delivery-option {
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}

.payment-option:hover,
.delivery-option:hover { border-color: var(--mh-plum); }

.payment-option input:checked + label,
.delivery-option input:checked ~ * { font-weight: 700; }

/* ============================================================
   ACCOUNT PAGES
   ============================================================ */

#authentication .login-form,
#authentication .register-form,
#identity .form,
#my-account .links-list {
  max-width: 560px;
  margin: 0 auto;
}

#my-account .links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

#my-account .links li,
.account-link a,
.links li a {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--mh-plum);
  font-weight: 600;
  transition: border-color .15s ease, transform .15s ease;
  gap: 0.5rem;
}

#my-account .links li a:hover,
.account-link a:hover,
.links li a:hover {
  border-color: var(--mh-plum);
  color: var(--mh-primary-deep);
  transform: translateY(-2px);
}

#my-account .links li i,
.links i {
  font-size: 28px;
  color: var(--mh-plum);
}

.account-link .link-item {
  font-size: 14px;
  font-weight: 600;
}

/* Account nav sidebar */
.account-menu,
.page-customer-account .links-list {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  padding: 0.5rem;
}

.account-menu a,
.page-customer-account .links-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--mh-plum);
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}

.account-menu a:hover,
.account-menu a.active,
.page-customer-account .links-list a:hover { background: var(--mh-cream); color: var(--mh-primary-deep); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

#contact .contact-form {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  padding: 2rem;
  max-width: 640px;
}

#contact .contact-rich {
  background: var(--mh-cream);
  border: 0;
  border-radius: 4px;
  padding: 2rem;
}

/* ============================================================
   CMS / TEXT PAGES (terms, privacy, about)
   ============================================================ */

#cms .page-content,
.cms-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

#cms .page-content p,
.cms-content p { margin-bottom: 1rem; color: var(--mh-plum-soft); }

#cms .page-content h2 { margin-top: 2.5rem; }

#cms .page-content ul,
#cms .page-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
#cms .page-content li { margin-bottom: 0.35rem; color: var(--mh-plum-soft); }

/* ============================================================
   404 + Maintenance
   ============================================================ */

#pagenotfound .page-content,
#maintenance .page-content {
  text-align: center;
  padding: 5rem 1rem;
}

#pagenotfound .page-content h1,
#maintenance .page-content h1 {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

#pagenotfound .page-content .btn { margin-top: 2rem; }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */

#search .page-header {
  margin-bottom: 1rem;
}

.search-no-results {
  background: var(--mh-cream);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 16px;
  color: var(--mh-plum-soft);
}

/* ============================================================
   ORDER CONFIRMATION
   ============================================================ */

#order-confirmation .page-header,
#order-confirmation .order-confirmation-table {
  background: var(--mh-cream);
  border-radius: 4px;
  padding: 2rem;
  border: 0;
}

.order-confirmation-table h3,
#order-confirmation h3 {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
}

/* ============================================================
   GLOBAL: kill old Bootstrap "danger" / "warning" badges, etc.
   ============================================================ */

.label-default, .badge-default {
  background: #F4F4F2; color: var(--mh-plum);
}

.label-success, .badge-success { background: #ECFDF3; color: #027A48; }
.label-warning, .badge-warning { background: #FFFAEB; color: #B54708; }
.label-danger, .badge-danger { background: #FEF3F2; color: #B42318; }

/* Make sure the body padding is honored on inner pages */
.page-product #wrapper,
.page-category #wrapper,
.page-search #wrapper,
.page-customer-account #wrapper,
.page-cart #wrapper,
.page-checkout #wrapper,
.page-content--cms #wrapper { background: #FFFFFF; }

/* Inner pages should still have a container with same gutter as homepage */
#main .container,
#main .container-md {
  max-width: 1450px !important;
  padding: 0 1.5rem !important;
}

/* PDP needs a wider wrapper (1400px) to align with header/footer.
   The actual wrapping is <main id="wrapper"> > .columns-container.container
   > #center-column > .product__container. Override all that constrains. */
body#product .columns-container.container,
body#product #wrapper .columns-container.container {
  max-width: 1450px !important;
  width: auto !important;
  padding: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body#product #center-column {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

@media (max-width: 600px) {
  #main .container, #main .container-md { padding: 0 0.85rem !important; }
  .page-header h1, .page-title { font-size: 1.6rem; }
}

/* ============================================================
   PDP — FULL RESPONSIVE POLISH (tablet + mobile)
   Frontrunner ecommerce: full-bleed gallery on mobile, dot
   indicators, big touch targets, tight cards, smooth carousels
   ============================================================ */

/* ---------- Large tablet / small desktop (1024–1199px) ---------- */
@media (max-width: 1199px) {
  body#product .product__container.product-container {
    grid-template-columns: minmax(0, 1.3fr) minmax(340px, 1fr);
    gap: 2rem;
    padding: 0 1.25rem;
  }
  body#product .product__carousel { height: 420px; }
  body#product .mh-rail { padding: 0 1.25rem; }
  body#product .mh-rail__item { flex-basis: calc((100% - 3rem) / 4); }
}

/* ---------- Tablet (768–1023px): single column, premium feel ---------- */
@media (max-width: 1023px) {
  body#product #main { padding-block: 0.5rem 2rem; }

  body#product .product__container.product-container {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.25rem;
    padding: 0 1.25rem;
    max-width: 760px;
  }

  body#product .product__left {
    position: static !important;
    padding: 1rem !important;
    border-radius: 8px;
  }
  body#product .product__carousel { height: 440px; }

  /* Thumbnails BELOW main image, horizontal scroll */
  body#product .product__images.js-images-container {
    flex-direction: column;
    gap: 0.65rem;
  }
  body#product .product__thumbnails { order: 2 !important; width: 100%; }
  body#product .product__thumbnails-list {
    flex-direction: row !important;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  body#product .product__thumbnails-list::-webkit-scrollbar { display: none; }

  body#product .product__right { padding: 0 !important; }
  body#product .mh-buybox { padding: 1.1rem 1.1rem 0.85rem; border-radius: 10px; }
  body#product .mh-buybox .product__price { font-size: 1.85rem; }

  /* Bigger touch targets */
  body#product .product__add-to-cart-button,
  body#product .product-add-to-cart .btn-add-to-cart,
  body#product .add-to-cart { height: 50px; font-size: 14px; }
  body#product .mh-wishlist-btn { width: 50px; height: 50px; flex: 0 0 50px; }
  body#product .mh-wishlist-btn svg { width: 22px; height: 22px; }

  body#product .mh-tp-line { gap: 0.5rem; }
  body#product .mh-usps-stack__item { padding: 0.7rem 0.85rem; }
  body#product .product__right .mh-acc .accordion-button {
    padding: 1.2rem 0;
    font-size: 15px;
  }

  body#product .mh-rail { padding: 0 1.25rem; margin-top: 2rem; }
  body#product .mh-rail__item { flex-basis: calc((100% - 2rem) / 3); min-width: 0; }
  body#product .mh-rail__title { font-size: 1.25rem; }
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {
  body#product #main { padding-block: 0 0; }
  /* Tight breadcrumb — kill big padding above & below it */
  body#product .breadcrumb__wrapper { padding: 0 !important; margin: 0 !important; }
  body#product .breadcrumb__wrapper .container { padding: 0.15rem 1rem 0; }
  body#product .breadcrumb {
    font-size: 11px;
    padding: 0.1rem 0 !important;
    margin: 0 !important;
  }

  body#product .product__container.product-container {
    padding: 0;
    gap: 0.75rem;
    max-width: 100%;
  }

  /* Image: edge-to-edge premium feel */
  body#product .product__left {
    background: #FAFAFA;
    border-radius: 0 !important;
    padding: 0.5rem !important;
    margin: 0.5rem 0 0;
  }
  body#product .product__carousel { height: 360px; }
  body#product .product__carousel .carousel-item img { max-height: 320px !important; }

  body#product .product__carousel .carousel-control-prev,
  body#product .product__carousel .carousel-control-next { display: none; }
  body#product .product__zoom { bottom: 0.5rem !important; right: 0.5rem !important; }

  /* Convert thumb strip → dot indicators */
  body#product .product__thumbnails-list {
    justify-content: center;
    padding: 0.5rem 0 0;
    gap: 0.4rem !important;
  }
  body#product .product__thumbnail {
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: var(--mh-border) !important;
    border: 0 !important;
    overflow: hidden;
    text-indent: -9999px;
    transition: all .2s ease;
  }
  body#product .product__thumbnail.active {
    background: var(--mh-plum) !important;
    width: 22px !important;
    border-radius: 4px !important;
  }
  body#product .product__thumbnail-image { display: none !important; }

  body#product .product__right { padding: 0 1rem !important; }
  body#product .product__manufacturer {
    font-size: 11px;
    margin: 1rem 0 0.55rem;
  }
  body#product .product__manufacturer a { font-size: 11px; }
  body#product .product__header-row { margin-top: 0.5rem; }
  body#product .product__name {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0 0 0.1rem;
  }
  body#product .product__description-short { font-size: 13px; margin-bottom: 0.4rem; }

  body#product .mh-tp-line { gap: 0.4rem; margin-bottom: 0.85rem; }
  body#product .mh-tp-badge { padding: 0.25rem 0.45rem; font-size: 11px; }
  body#product .mh-tp-badge__star { width: 12px; height: 12px; }
  body#product .mh-tp-badge__star::after { font-size: 9px; line-height: 12px; }
  body#product .mh-pdp__rating-link { font-size: 12px; }

  body#product .mh-buybox {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.65rem;
  }
  body#product .mh-buybox .product__price { font-size: 1.7rem; }
  body#product .product__regular-price { font-size: 13px; }
  body#product .product__discount-percentage { font-size: 11px; padding: 0.2rem 0.45rem; }
  body#product .mh-pdp-save { font-size: 11px; padding: 0.2rem 0.45rem; }

  body#product .mh-stockblock {
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.85rem;
    gap: 0.35rem;
  }
  body#product .mh-stockblock__row { font-size: 12.5px; gap: 0.5rem; }
  body#product .mh-stockblock__row--stock { font-size: 13.5px; }
  body#product .mh-stockblock__icon { width: 16px; height: 16px; }

  /* ATC prominent + tap-friendly */
  body#product .product__add-to-cart-button,
  body#product .product-add-to-cart .btn-add-to-cart,
  body#product .add-to-cart {
    height: 52px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  body#product .product__add-to-cart-button i,
  body#product .add-to-cart i { font-size: 20px; }
  body#product .mh-wishlist-btn { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 6px; }
  body#product .mh-wishlist-btn svg { width: 22px; height: 22px; }

  body#product .mh-buybox .mh-payment-icons {
    padding-top: 0.65rem;
    margin-top: 0.65rem;
    gap: 0.4rem;
  }
  body#product .mh-payicon { height: 26px; padding: 0 0.4rem; }
  body#product .mh-payicon img { height: 14px; }

  body#product .mh-usps-stack { margin-bottom: 0.65rem; gap: 0; }
  body#product .mh-usps-stack__item {
    padding: 0.7rem 0.85rem;
    grid-template-columns: 20px 1fr auto;
    gap: 0.6rem;
  }
  body#product .mh-usps-stack__icon { width: 20px; height: 20px; }
  body#product .mh-usps-stack__text { font-size: 14px; }

  body#product .product__right .mh-pdp-info { margin-top: 0.5rem; }
  body#product .product__right .mh-acc .accordion-button {
    padding: 1.1rem 0;
    font-size: 14.5px;
  }
  body#product .product__right .mh-acc .accordion-body { font-size: 13.5px; padding: 0 0 1.1rem; }

  /* Sticky-bar bottom padding so it doesn't cover content */
  body#product main,
  body#product #wrapper { padding-bottom: 80px !important; }

  /* Rails — peek scroll */
  body#product .mh-rail { padding: 0 1rem; margin-top: 1.5rem; }
  body#product .mh-rail__head { margin-bottom: 0.75rem; }
  body#product .mh-rail__title { font-size: 1.05rem; }
  body#product .mh-rail__nav { display: none; }
  body#product .mh-rail__track {
    gap: 0.65rem;
    padding-right: 1rem;
    margin-right: -1rem;
  }
  body#product .mh-rail__item {
    flex-basis: 45% !important;
    min-width: 150px !important;
    max-width: none !important;
  }
  body#product .mh-rail__item .thumbnail-container,
  body#product .mh-rail__item .thumbnail { padding: 0.5rem; }

  /* Sticky cart bar polished — safe-area aware */
  .mh-sticky-cart { padding-bottom: env(safe-area-inset-bottom, 0); }
  .mh-sticky-cart__inner { padding: 0.55rem 0.85rem; gap: 0.55rem; }
  .mh-sticky-cart__img { width: 40px; height: 40px; }
  .mh-sticky-cart__name { font-size: 12px; }
  .mh-sticky-cart__current { font-size: 14px; }
  .mh-sticky-cart__regular { font-size: 11px; }
  .mh-sticky-cart__btn { padding: 0.65rem 1rem; font-size: 12.5px; border-radius: 6px; }
  .mh-sticky-cart__btn span { font-size: 12.5px; }

  body#product .mh-reviews-stub #product-comments-list-review-button { width: 100%; }
}

/* ---------- Small mobile (≤380px) ---------- */
@media (max-width: 380px) {
  body#product .product__name { font-size: 1.18rem; }
  body#product .mh-buybox { padding: 0.85rem; }
  body#product .mh-buybox .product__price { font-size: 1.5rem; }
  body#product .mh-stockblock { padding: 0.6rem 0.7rem; }
  body#product .mh-stockblock__row { font-size: 12px; }
  body#product .mh-rail__item { flex-basis: 60% !important; }
  .mh-sticky-cart__inner { gap: 0.45rem; padding: 0.5rem 0.7rem; }
  .mh-sticky-cart__btn span { display: none; }
  .mh-sticky-cart__btn { padding: 0.6rem 0.75rem; min-width: 44px; }
}

/* ---------- Touch refinements ---------- */
@media (hover: none) and (pointer: coarse) {
  .mh-rail__track { scroll-snap-type: x mandatory; scroll-snap-stop: always; }
  .product__add-to-cart-button,
  .mh-wishlist-btn,
  .mh-sticky-cart__btn,
  .mh-rail__btn { -webkit-tap-highlight-color: transparent; }
  .product__add-to-cart-button:active { transform: scale(0.98); }
  .mh-sticky-cart__btn:active { transform: scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
  .mh-rail__track { scroll-behavior: auto; }
  .mh-sticky-cart { transition: none; }
  .product__add-to-cart-button { transition: none; }
}

/* ============================================================
   FRONTRUNNER CATEGORY — MOBILE + TABLET POLISH
   Circular subcategory chips, sticky twin-pill toolbar,
   polished offcanvas drawer, big tap targets, sleek 2-col grid.
   ============================================================ */

@media (max-width: 991.98px) {
  body#category #wrapper .columns-container.container,
  body#category #wrapper .container { padding-left: 1rem; padding-right: 1rem; }
  .mh-cat-hero { margin: 0 0 0.75rem; }
  .mh-cat-hero__inner { gap: 0.85rem; }
  .mh-cat-hero__head { padding: 0; gap: 0.4rem; }
  .mh-cat-hero__row { gap: 0.4rem 0.75rem; }
  .mh-cat-hero__title { font-size: clamp(1.55rem, 4.5vw, 2rem); line-height: 1.05; margin: 0; }
  .mh-cat-hero__desc { font-size: 13.5px; line-height: 1.55; }

  .mh-cat-chips__track {
    gap: 0.85rem;
    padding: 0.25rem 0.25rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding-left: 0.25rem;
  }
  .mh-cat-chips__track::-webkit-scrollbar { display: none; }
  .mh-cat-chips__chip {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    min-width: 80px;
    max-width: 88px;
  }
  .mh-cat-chips__chip:hover,
  .mh-cat-chips__chip:focus-visible { background: transparent; transform: translateY(-1px); }
  .mh-cat-chips__thumb {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--mh-cream);
    border: 2px solid var(--mh-border);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 15, 15, 0.08);
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  }
  .mh-cat-chips__chip:hover .mh-cat-chips__thumb,
  .mh-cat-chips__chip:focus-visible .mh-cat-chips__thumb {
    border-color: var(--mh-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 61, 154, 0.18);
  }
  .mh-cat-chips__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .mh-cat-chips__label {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--mh-ink);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
  }

  .mh-cat-toolbar.mh-cat-toolbar--mobile {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    margin: 0 -1rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--mh-line);
    border-bottom: 1px solid var(--mh-line);
  }
  .mh-cat-toolbar.mh-cat-toolbar--mobile .mh-cat-toolbar__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    max-width: 320px;
    height: 44px;
    padding: 0 0.85rem;
    background: #fff;
    color: var(--mh-ink);
    border: 1.5px solid var(--mh-ink);
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .mh-cat-toolbar.mh-cat-toolbar--mobile .mh-cat-toolbar__filter i { font-size: 17px; }
  .mh-cat-toolbar.mh-cat-toolbar--mobile .mh-cat-toolbar__filter:active {
    background: var(--mh-ink);
    color: #fff;
  }
  .mh-cat-toolbar.mh-cat-toolbar--mobile .mh-cat-toolbar__filter-badge {
    background: var(--mh-primary);
    color: #fff;
    margin-left: 0.1rem;
  }

  body#category .js-active-search-filters,
  body#category .active-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0.4rem;
    padding: 0 0 0.6rem;
    margin: -0.4rem 0 0.4rem;
  }
  body#category .js-active-search-filters::-webkit-scrollbar,
  body#category .active-filters::-webkit-scrollbar { display: none; }
  body#category .filter-block {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    padding: 0.3rem 0.65rem;
  }

  body#category #products .products {
    gap: 0.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#category .mh-card { border-radius: 12px; overflow: hidden; }
  body#category .mh-card__media { border-radius: 12px 12px 0 0; }
  body#category .mh-card__img { transition: transform 0.4s ease; }
  body#category .mh-card:active .mh-card__img { transform: scale(1.02); }
  body#category .mh-card__body { padding: 0.6rem 0.65rem 0.85rem; gap: 0.15rem; }
  body#category .mh-card__brand {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mh-plum);
  }
  body#category .mh-card__name {
    font-size: 12.5px;
    line-height: 1.25;
    color: var(--mh-plum-soft);
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  body#category .mh-card__prices {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.2rem;
  }
  body#category .mh-card__price { font-size: 14.5px; font-weight: 800; color: var(--mh-ink); }
  body#category .mh-card__price--sale { color: var(--mh-primary-deep); }
  body#category .mh-card__was { font-size: 11px; color: var(--mh-muted); text-decoration: line-through; }
  body#category .mh-card__badge {
    font-size: 10.5px;
    font-weight: 800;
    padding: 0.25rem 0.45rem;
    border-radius: 4px;
    top: 0.5rem;
    left: 0.5rem;
  }
  body#category .mh-card__actions {
    bottom: auto;
    top: 0.5rem;
    right: 0.5rem;
    flex-direction: column;
    gap: 0.35rem;
    opacity: 1;
  }
  body#category .mh-card__wish-slot .bm-wishlist-btn-mini,
  body#category .mh-card__wish-slot button,
  body#category .mh-card__buy {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px rgba(15, 15, 15, 0.08);
    border: 0;
  }
  body#category .mh-card__buy { color: var(--mh-ink); }
  body#category .mh-card__rating,
  body#category .mh-card__stock { font-size: 10.5px; }

  body#category .products__pagination { margin: 1.75rem 0 0.5rem; }
  body#category .pagination {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.3rem;
    padding: 0.3rem;
  }
  body#category .pagination .page-item .page-link,
  body#category .pagination a { min-width: 38px; height: 38px; font-size: 13px; }
  body#category .pagination .page-link.previous,
  body#category .pagination .page-link.next { padding: 0 0.85rem; }

  body#category .mh-cat-seo {
    margin: 1.5rem -1rem 0;
    padding: 1.25rem 1rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  body#category .mh-cat-seo__inner { font-size: 13.5px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body#category #products .products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; }
  body#category .mh-card__name { font-size: 13.5px; }
  body#category .mh-card__price { font-size: 15.5px; }
  body#category .mh-card__brand { font-size: 11px; }
  body#category .mh-card__body { padding: 0.7rem 0.75rem 0.95rem; }
  .mh-cat-chips__thumb { width: 76px; height: 76px; }
  .mh-cat-chips__chip { min-width: 84px; max-width: 96px; }
  .mh-cat-chips__label { font-size: 12.5px; }
  .mh-cat-hero__title { font-size: clamp(1.85rem, 3vw, 2.2rem); }
}

@media (max-width: 767.98px) {
  /* Tight breadcrumb — kill the big padding/margin above & below it */
  body#category .breadcrumb__wrapper { padding: 0.25rem 0 0 !important; }
  body#category .breadcrumb {
    font-size: 11px;
    gap: 0.25rem;
    padding: 0.2rem 0 !important;
    margin: 0 !important;
  }

  /* Compressed hero */
  .mh-cat-hero { margin: 0.1rem 0 0.55rem; }
  .mh-cat-hero__inner { gap: 0.55rem; }
  .mh-cat-hero__head { gap: 0.3rem; }
  .mh-cat-hero__title { font-size: 1.4rem; letter-spacing: -0.015em; }
  .mh-cat-hero__banner {
    aspect-ratio: 3 / 1;
    min-height: 84px;
    max-height: 150px;
    border-radius: 12px;
  }
  .mh-cat-hero__desc { font-size: 13px; }
  .mh-cat-hero__desc-clip { max-height: 2.9em; }
}

@media (max-width: 380px) {
  .mh-cat-hero__title { font-size: 1.4rem; }
  .mh-cat-chips__thumb { width: 56px; height: 56px; }
  .mh-cat-chips__chip { min-width: 60px; max-width: 64px; }
  .mh-cat-chips__label { font-size: 10.5px; }
  body#category #products .products { gap: 0.5rem; }
  body#category .mh-card__body { padding: 0.5rem 0.55rem 0.7rem; }
  body#category .mh-card__name { font-size: 12px; }
  body#category .mh-card__price { font-size: 13.5px; }
  .mh-cat-toolbar.mh-cat-toolbar--mobile .mh-cat-toolbar__filter {
    font-size: 12px;
    padding: 0 0.65rem;
    height: 40px;
  }
}

/* Faceted offcanvas drawer */
#offcanvas-faceted.offcanvas {
  width: min(420px, 88vw);
  max-width: 88vw;
  background: #fff;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 20px 60px rgba(15, 15, 15, 0.18);
}
#offcanvas-faceted .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--mh-line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
#offcanvas-faceted .offcanvas-title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--mh-ink);
  margin: 0;
}
#offcanvas-faceted .btn-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--mh-cream);
  opacity: 1;
  transition: background-color 0.15s ease;
}
#offcanvas-faceted .btn-close:hover { background-color: var(--mh-rose); }
#offcanvas-faceted .offcanvas-body {
  padding: 0.5rem 1rem 6rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#offcanvas-faceted .facet { padding: 0.85rem 0; border-bottom: 1px solid var(--mh-line); }
#offcanvas-faceted .facet:last-child { border-bottom: 0; }
#offcanvas-faceted .facet-title,
#offcanvas-faceted .h6 {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mh-ink);
  margin: 0 0 0.5rem;
}
#offcanvas-faceted .facet-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.4rem;
  font-size: 14px;
  border-radius: 10px;
  min-height: 44px;
}
#offcanvas-faceted .facet-label:active { background: var(--mh-rose); }
#offcanvas-faceted .facet-label.active { color: var(--mh-primary-deep); font-weight: 700; }
#offcanvas-faceted .magnitude { margin-left: auto; font-size: 12px; color: var(--mh-muted); }
#offcanvas-faceted .clear-all-wrapper {
  position: sticky;
  bottom: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 30%);
  margin: 0 -1rem;
}
#offcanvas-faceted .js-search-filters-clear-all {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: var(--mh-ink);
  color: #fff;
  border: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#offcanvas-faceted .js-search-filters-clear-all:hover,
#offcanvas-faceted .js-search-filters-clear-all:active { background: var(--mh-primary); }
.offcanvas-backdrop.show { opacity: 0.45; }

/* Sort bottom-sheet (mobile) */
.mh-sort-sheet {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mh-sort-sheet.is-open { display: flex; opacity: 1; }
.mh-sort-sheet__panel {
  background: #fff;
  width: 100%;
  max-width: 540px;
  border-radius: 18px 18px 0 0;
  padding: 0.85rem 0.75rem calc(1.25rem + env(safe-area-inset-bottom));
  transform: translateY(20px);
  transition: transform 0.25s ease;
  max-height: 80vh;
  overflow-y: auto;
}
.mh-sort-sheet.is-open .mh-sort-sheet__panel { transform: translateY(0); }
.mh-sort-sheet__grabber {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: var(--mh-border);
  margin: 0 auto 0.85rem;
}
.mh-sort-sheet__title {
  font-family: var(--mh-font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--mh-ink);
  margin: 0 0 0.75rem;
}
.mh-sort-sheet__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--mh-ink);
  font-weight: 600;
  font-size: 14.5px;
  min-height: 48px;
}
.mh-sort-sheet__item:hover,
.mh-sort-sheet__item:focus-visible { background: var(--mh-rose); color: var(--mh-primary-deep); }
.mh-sort-sheet__item.is-current { background: var(--mh-ink); color: #fff; }
.mh-sort-sheet__item.is-current::after {
  content: "\2713";
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 992px) { .mh-sort-sheet { display: none !important; } }
@media (max-width: 991.98px) { .mh-cat-hero__sort .dropdown-menu { display: none !important; } }

.mh-floating { z-index: 1100; }

/* ============================================================
   CART PAGE — fixes for Hummingbird's actual structure
   ============================================================ */

/* Override Bootstrap col-lg-8/4 inside cart-grid; force 2-col layout */
.cart-grid {
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 1.5rem !important;
  align-items: start !important;
}

.cart-grid__content,
.cart-grid__aside {
  flex: none !important;
  max-width: 100% !important;
  width: auto !important;
}

.cart-grid__aside {
  position: sticky !important;
  top: 100px !important;
}

@media (max-width: 900px) {
  .cart-grid { grid-template-columns: 1fr !important; }
  .cart-grid__aside { position: static !important; }
}

/* Cart products container */
.cart-grid__products-details,
.cart-grid__content > .card,
.cart-grid__content > section {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  overflow: hidden;
}

/* Individual cart line items */
.cart-item,
.cart-grid__products-details .cart-item,
.cart-grid__products-details > div {
  display: grid !important;
  grid-template-columns: 110px 1fr auto !important;
  gap: 1.25rem !important;
  padding: 1.25rem !important;
  border-bottom: 1px solid var(--mh-line) !important;
  align-items: center !important;
}

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

.cart-item img,
.cart-grid__products-details img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #F4F4F2;
  border-radius: 4px;
  mix-blend-mode: multiply;
}

/* Style bm_cart's totals block (uses bm-cart-* prefix) */
.bm-cart-totals,
.cart-grid__aside .card,
.cart-grid__aside > div {
  background: #FAFAFA !important;
  border: 1px solid var(--mh-line) !important;
  border-radius: 4px !important;
  padding: 1.5rem !important;
  width: 100% !important;
}

.bm-cart-totals h2,
.cart-grid__aside h2,
.cart-grid__aside h3 {
  font-family: "Bricolage Grotesque", var(--mh-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mh-plum);
  margin: 0 0 1rem;
  padding: 0;
  letter-spacing: -0.01em;
  border: 0;
}

.bm-cart-total-row,
.cart-summary-line {
  display: flex !important;
  justify-content: space-between !important;
  padding: 0.55rem 0 !important;
  font-size: 14px !important;
  color: var(--mh-plum-soft) !important;
  border: 0 !important;
}

.bm-cart-grand-total,
.bm-cart-total-row.cart-total,
.cart-summary-line.cart-total {
  border-top: 1px solid var(--mh-line) !important;
  padding-top: 1rem !important;
  margin-top: 0.5rem !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  color: var(--mh-plum) !important;
}

/* Checkout CTA — full width, prominent */
.cart-grid__aside .btn,
.bm-cart-totals .btn,
.cart-detailed-actions .btn,
a.btn[href*="checkout"],
button.btn[name="checkout"] {
  width: 100% !important;
  padding: 1rem 1.25rem !important;
  font-size: 13.5px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin-top: 1rem !important;
  background: var(--mh-plum) !important;
  color: #FFFFFF !important;
  border: 0 !important;
  border-radius: 4px !important;
  white-space: normal !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.3 !important;
  min-height: 52px !important;
}

.cart-grid__aside .btn:hover { background: var(--mh-primary) !important; }

/* Fjern link (remove from cart) */
.cart-item .remove-from-cart,
.cart-item a[href*="delete"] {
  color: var(--mh-primary-deep) !important;
  text-decoration: none !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
}

.cart-item .remove-from-cart:hover { color: var(--mh-plum) !important; }

/* "Fortsæt indkøb" link */
.cart-grid__content + a,
.cart-grid__content .continue-shopping,
a[href*="continue"] { color: var(--mh-primary-deep); font-weight: 600; font-size: 13.5px; text-decoration: none; }

/* Product line price styling */
.product-line .product-price,
.cart-item .price { font-family: var(--mh-font-body); font-weight: 700; font-size: 15px; color: var(--mh-plum); }

.product-line .regular-price,
.cart-item .regular-price { color: var(--mh-muted); text-decoration: line-through; font-weight: 500; font-size: 13px; }

/* ============================================================
   CART PAGE v2 — Conversion-optimized 10/10 e-commerce layout
   - Card-style product lines, sticky summary, free shipping bar,
     USP row, voucher polish, payment icons, big CTA
   ============================================================ */

body#cart #wrapper {
  padding-top: 3rem !important;
  padding-bottom: 2rem !important;
}

/* Hide breadcrumb, main category nav, AND footer on cart page —
   distraction-free checkout focus. Hooks remain in DOM (display:none
   preserves any inline JS / hook events). */
body#cart .breadcrumb__wrapper,
body#cart .mh-nav,
body#cart .mh-floating__nav,
body#cart .mh-floating,
body#cart .mh-pre-footer,
body#cart .mh-footer,
body#cart #footer,
body#cart footer.mh-footer,
body#cart footer#footer { display: none !important; }

/* Fix .cart__overview display:grid that indents the product lines.
   Inner cart__list / cart__item / product-line must take full width. */
body#cart .cart__overview,
body#cart .cart-overview {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
body#cart .cart__list,
body#cart .cart__item,
body#cart .js-cart-list,
body#cart .js-cart-item {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
/* Remove the empty <hr> separators that add unwanted top/bottom whitespace */
body#cart .cart__overview > hr,
body#cart .cart-overview > hr,
body#cart .cart-grid__products-details > hr { display: none !important; }

/* Align cart page with PDP grid */
body#cart .columns-container.container,
body#cart #wrapper .columns-container.container {
  max-width: 1450px !important;
  width: auto !important;
  padding: 0 1.5rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body#cart #center-column { max-width: none !important; padding: 0 !important; }

/* Hero title row with item count */
body#cart .page-title-section .page-title,
body#cart .page-title-section h1 {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0 0 1.25rem;
}

body#cart .cart-grid.row {
  --bs-gutter-x: 1.75rem;
  margin-left: 0;
  margin-right: 0;
}
body#cart .cart-grid__content,
body#cart .cart-grid__aside { padding: 0; }
body#cart .cart-grid__content { padding-right: 1.75rem; }

/* Card-style cart items wrapper */
body#cart .cart-grid__products-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  overflow: hidden;
}

/* Product line — clean, premium row */
body#cart .product-line {
  display: grid !important;
  grid-template-columns: 96px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--mh-line);
  position: relative;
}
body#cart .product-line:last-child { border-bottom: 0; }

body#cart .product-line__image {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: #F7F7F5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#cart .product-line__image img {
  max-width: 80%;
  max-height: 80%;
  width: auto !important;
  height: auto !important;
  mix-blend-mode: multiply;
  object-fit: contain;
}

body#cart .product-line__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
  align-items: start;
}
body#cart .product-line__content-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
body#cart .product-line__title {
  font-family: var(--mh-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--mh-plum);
  letter-spacing: -0.005em;
  line-height: 1.3;
  text-decoration: none;
  margin: 0;
}
body#cart .product-line__title:hover { color: var(--mh-primary-deep); }

body#cart .product-line__item--info {
  font-size: 12.5px;
  color: var(--mh-muted);
  margin: 0;
}
body#cart .product-line__item-label { font-weight: 500; }

body#cart .product-line__item--availability { font-size: 12.5px; }
body#cart .product-line__item-availability-message.text-success { color: #1F8F4C !important; }
body#cart .product-line__item-availability-icon { font-size: 14px; vertical-align: middle; }

body#cart .product-line__item--prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.2rem;
}
body#cart .product-line__item-price {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--mh-plum);
}
body#cart .product-line__item-regular-price {
  color: var(--mh-muted);
  text-decoration: line-through;
  font-size: 13px;
}
body#cart .product-line__item-discount,
body#cart .product-line__item-discount.badge {
  background: var(--mh-primary) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 11px;
  padding: 0.2rem 0.45rem !important;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
body#cart .product-line__item-unit-price {
  font-size: 11.5px;
  color: var(--mh-muted);
  display: block;
  flex-basis: 100%;
}

/* Right side: qty + line total */
body#cart .product-line__content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  justify-self: end;
}
body#cart .product-line__quantity-button {
  display: inline-flex;
  width: 96px;
  height: 36px;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
}
body#cart .product-line__quantity-button .input-group,
body#cart .product-line__quantity-button .quantity-button__group {
  width: 100%;
  height: 100%;
  border: 0 !important;
  display: flex !important;
}
body#cart .product-line__quantity-button .btn {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  width: 28px !important;
  height: 100% !important;
  padding: 0 !important;
  color: var(--mh-plum) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 28px;
}
body#cart .product-line__quantity-button .btn:hover {
  background: var(--mh-rose) !important;
  color: var(--mh-primary-deep) !important;
}
body#cart .product-line__quantity-button .btn i { font-size: 16px; }
body#cart .product-line__quantity-button input,
body#cart .product-line__quantity-button .form-control {
  width: 40px !important;
  height: 100% !important;
  border: 0 !important;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  background: #FFFFFF;
  padding: 0;
  box-shadow: none !important;
  outline: none !important;
}

body#cart .product-line__price {
  font-weight: 700;
  font-size: 16px;
  color: var(--mh-plum);
  white-space: nowrap;
}

/* Remove (X) — top-right corner, OUT of the way of qty stepper */
body#cart .product-line__actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
}
body#cart .product-line__actions .js-remove-from-cart,
body#cart .product-line__actions a[href*="delete"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--mh-muted) !important;
  font-size: 0 !important;
  text-decoration: none !important;
  transition: all .15s ease;
  border: 1px solid transparent;
}
body#cart .product-line__actions .js-remove-from-cart::before {
  content: "✕";
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: block;
}
body#cart .product-line__actions .js-remove-from-cart:hover {
  background: var(--mh-rose);
  border-color: var(--mh-primary);
  color: var(--mh-primary-deep) !important;
}

/* Give qty/price space below the corner X */
body#cart .product-line { padding-right: 1.25rem; }
body#cart .product-line__content-right { padding-top: 1.5rem; }

/* Continue shopping button */
body#cart .cart__continue-shopping {
  margin-top: 1rem;
  background: transparent !important;
  border: 1px solid var(--mh-border) !important;
  color: var(--mh-plum) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em;
  text-transform: none !important;
  padding: 0.7rem 1.25rem !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
}
body#cart .cart__continue-shopping:hover { background: var(--mh-rose) !important; border-color: var(--mh-primary) !important; }
body#cart .cart__continue-shopping i { font-size: 16px; }

/* ============================================================
   RIGHT COLUMN — Order Summary (sticky, conversion-focused)
   ============================================================ */
body#cart .cart-grid__aside-wrapper {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Free shipping progress (pseudo bar via gradient — content set via attribute) */
body#cart .cart-summary {
  background: #FFFFFF !important;
  border: 1px solid var(--mh-line) !important;
  border-radius: 8px !important;
  padding: 1.25rem !important;
  width: 100% !important;
  box-shadow: 0 1px 4px rgba(15,15,15,0.04);
}

body#cart .cart-grid__aside h2 {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--mh-plum);
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

body#cart .cart-summary__subtotals { margin-bottom: 0.25rem; }
body#cart .cart-summary__line {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  padding: 0.2rem 0 !important;
  margin: 0 !important;
  font-size: 13.5px;
  color: var(--mh-plum-soft);
  border: 0 !important;
  line-height: 1.3;
}
body#cart .cart-summary__label { font-weight: 500; }
body#cart .cart-summary__value { font-weight: 600; color: var(--mh-plum); }

body#cart .cart-summary__totals .cart-total,
body#cart #cart-subtotal-shipping ~ .cart-total,
body#cart .cart-summary-line--total {
  border-top: 1px solid var(--mh-line) !important;
  padding-top: 0.55rem !important;
  margin-top: 0.4rem !important;
}
body#cart .cart-summary__totals .cart-total .label,
body#cart .cart-summary__totals .cart-total .value {
  font-weight: 700 !important;
  font-size: 17px !important;
  color: var(--mh-plum) !important;
}

/* Voucher block */
body#cart .cart-voucher,
body#cart .promo-code,
body#cart .js-discount {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--mh-line);
}
body#cart .promo-code-button,
body#cart .has-discount {
  font-size: 13px;
  font-weight: 600;
  color: var(--mh-primary-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
body#cart .promo-code-button::before { content: "+"; font-size: 16px; }
body#cart .promo-code .input-group,
body#cart .promo-input {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
body#cart .promo-code .form-control,
body#cart .promo-input input {
  height: 42px;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  padding: 0 0.75rem;
  font-size: 13px;
  flex: 1 1 auto;
}
body#cart .promo-code .btn,
body#cart .promo-input button {
  height: 42px;
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Big checkout CTA */
body#cart .cart-detailed-actions,
body#cart .cart-summary__actions {
  margin-top: 0.85rem;
}
body#cart .cart-detailed-actions .btn,
body#cart .cart-summary__actions .btn,
body#cart .cart-summary__actions a.btn,
body#cart a[href*="checkout"].btn,
body#cart .js-cart-detailed-actions .btn {
  width: 100% !important;
  background: linear-gradient(180deg, #2EBD63 0%, #1FA855 100%) !important;
  color: #FFFFFF !important;
  border: 0 !important;
  border-radius: 6px !important;
  padding: 1rem 1.25rem !important;
  font-weight: 800 !important;
  font-size: 14.5px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(31, 168, 85, 0.25);
  transition: all .15s ease !important;
}
body#cart .cart-detailed-actions .btn:hover,
body#cart a[href*="checkout"].btn:hover {
  background: linear-gradient(180deg, #34CE6E 0%, #25B85F 100%) !important;
  box-shadow: 0 4px 10px rgba(31, 168, 85, 0.35);
  transform: translateY(-1px);
}
body#cart .cart-detailed-actions .btn::after,
body#cart a[href*="checkout"].btn::after {
  content: "→";
  font-size: 18px;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* USP/Trust card below summary */
body#cart .cart-grid__aside-wrapper::after {
  content: "";
  display: block;
}
body#cart .cart-grid__aside-wrapper hr { display: none; }

/* Reassurance block below summary — restyle as USP card */
body#cart #block-reassurance,
body#cart .block-reassurance {
  display: block !important;
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 1rem;
}
body#cart #block-reassurance ul,
body#cart .block-reassurance ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
body#cart #block-reassurance li,
body#cart .block-reassurance li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12.5px;
  color: var(--mh-plum-soft);
}
body#cart #block-reassurance li img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Add MyHair USP card if reassurance not configured */
body#cart .cart-grid__aside-wrapper::before {
  content: "🚚 Levering 1-3 hverdage  ·  ↩ 30 dages returret  ·  🔒 Sikker betaling";
  display: block;
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 12px;
  color: var(--mh-plum-soft);
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  order: 99;
}

/* Cross-sell below */
body#cart .cart-grid__footer {
  margin-top: 3rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  --bs-gutter-x: 0;
}
body#cart .cart-grid__footer > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
body#cart .cart-grid__footer .ps-featuredproducts,
body#cart .cart-grid__footer .featured-products,
body#cart .cart-grid__footer .ps-categoryproducts,
body#cart .cart-grid__footer section {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* "Fremhævede varer" (featured products) title style */
body#cart .cart-grid__footer h2,
body#cart .cart-grid__footer .h2,
body#cart .featured-products h2 {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin-bottom: 1.5rem;
}

/* Featured products: kill the nested Bootstrap .container so the section
   lines up edge-to-edge with the cart content above it */
body#cart .cart-grid__footer .module-products,
body#cart .cart-grid__footer .module-products.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 6-up product grid */
body#cart .cart-grid__footer .products,
body#cart .cart-grid__footer .module-products__list .products {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

@media (max-width: 1200px) {
  body#cart .cart-grid__footer .products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  body#cart .cart-grid__footer .products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
  }
}
@media (max-width: 520px) {
  body#cart .cart-grid__footer .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ============================================================
   CART PAGE — Mobile + Tablet
   ============================================================ */
@media (max-width: 991px) {
  body#cart .cart-grid.row { flex-direction: column; }
  body#cart .cart-grid__content { padding-right: 0; width: 100%; max-width: 100%; flex: 0 0 100%; }
  body#cart .cart-grid__aside { width: 100%; max-width: 100%; flex: 0 0 100%; margin-top: 1rem; }
  body#cart .cart-grid__aside-wrapper { position: static; }
}

@media (max-width: 600px) {
  body#cart .product-line {
    grid-template-columns: 72px 1fr;
    gap: 0.85rem;
    padding: 1rem;
    padding-right: 2.5rem;
  }
  body#cart .product-line__image { width: 72px; height: 72px; }
  body#cart .product-line__content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  body#cart .product-line__content-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-top: 0.5rem;
  }
  body#cart .product-line__title { font-size: 14px; }
  body#cart .product-line__item-price { font-size: 14px; }
  body#cart .product-line__price { font-size: 15px; }
  body#cart .product-line__actions { top: 0.65rem; right: 0.65rem; }
  body#cart .cart-summary { padding: 1rem !important; }
  body#cart .cart-detailed-actions .btn { min-height: 50px !important; font-size: 13.5px !important; }
}

/* ============================================================
   BM_CART SLIDING DRAWER — Tighter padding, smaller qty,
   side-by-side action buttons
   ============================================================ */
.bm-cart-footer {
  padding: 14px !important;
}
.bm-cart-totals {
  margin-bottom: 12px !important;
}
.bm-cart-total-row {
  padding: 4px 0 !important;
  margin-bottom: 0 !important;
  font-size: 13.5px !important;
}
.bm-cart-total-row.bm-cart-grand-total {
  font-size: 15.5px !important;
  padding-top: 8px !important;
  margin-top: 8px !important;
}

/* Side-by-side buttons in cart footer */
.bm-cart-buttons {
  flex-direction: row !important;
  gap: 8px !important;
}
.bm-cart-btn {
  padding: 11px 12px !important;
  font-size: 13px !important;
  flex: 1 1 0 !important;
  white-space: nowrap;
  line-height: 1.2;
}
.bm-cart-btn-primary {
  background: var(--mh-plum) !important;
  color: #FFFFFF !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bm-cart-btn-secondary {
  background: #FFFFFF !important;
  color: var(--mh-plum) !important;
  border: 1px solid var(--mh-border) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.bm-cart-btn-primary:hover { background: var(--mh-primary) !important; opacity: 1; }
.bm-cart-btn-secondary:hover { background: var(--mh-rose) !important; border-color: var(--mh-primary) !important; }

/* Smaller qty stepper in sliding cart */
.bm-cart-qty-btn {
  width: 24px !important;
  height: 24px !important;
  font-size: 14px !important;
}
.bm-cart-qty-input {
  width: 36px !important;
  height: 24px !important;
  font-size: 12.5px !important;
}

/* Tighter line padding inside cart drawer */
.bm-cart-content { padding: 14px !important; }
.bm-cart-line { padding: 10px 0 !important; }

/* ============================================================
   CART PAGE v3 — Full CRO arsenal
   Steps · Free shipping bar · Scarcity · Delivery date ·
   Express checkout · Trust card · Bonus · Order notes ·
   Mobile sticky CTA · Testimonials
   ============================================================ */

/* Checkout steps indicator */
.mh-checkout-steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
}
.mh-checkout-steps__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mh-muted);
  font-weight: 500;
}
.mh-checkout-steps__item + .mh-checkout-steps__item::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--mh-soft);
}
.mh-checkout-steps__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mh-line);
  color: var(--mh-muted);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mh-checkout-steps__item.is-active { color: var(--mh-plum); font-weight: 700; }
.mh-checkout-steps__item.is-active .mh-checkout-steps__num {
  background: var(--mh-plum);
  color: #FFFFFF;
}

/* Free shipping progress bar — compact */
.mh-shipbar {
  background: linear-gradient(135deg, #FFE8F1 0%, #FFD8EC 100%);
  border: 1px solid #FFD0E6;
  border-radius: 6px;
  padding: 0.5rem 0.85rem;
  margin: 0 0 1rem;
  position: relative;
  overflow: hidden;
}
.mh-shipbar.is-complete {
  background: linear-gradient(135deg, #E8F8EE 0%, #D2F0DC 100%);
  border-color: #B6E5C0;
}
.mh-shipbar__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 12.5px;
  color: var(--mh-plum);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.mh-shipbar__icon { font-size: 14px; flex-shrink: 0; }
.mh-shipbar__msg { flex: 1 1 auto; }
.mh-shipbar__msg strong { color: var(--mh-primary-deep); font-weight: 800; }
.mh-shipbar.is-complete .mh-shipbar__msg strong { color: #1F8F4C; }
.mh-shipbar__track {
  height: 5px;
  background: #FFFFFF;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
.mh-shipbar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mh-primary) 0%, var(--mh-primary-deep) 100%);
  border-radius: 999px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.mh-shipbar.is-complete .mh-shipbar__fill {
  background: linear-gradient(90deg, #2EBD63 0%, #1F8F4C 100%);
}

/* Cart header with item count */
.mh-cart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 1rem;
  gap: 1rem;
}
.mh-cart-header__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0;
}
.mh-cart-header__count {
  font-size: 13.5px;
  color: var(--mh-muted);
  font-weight: 600;
}

/* Hide the old default page title */
body#cart .page-title-section,
body#cart .cart-grid__content > .h1,
body#cart .cart-grid__content > h1 { display: none; }

/* Scarcity + delivery row — side by side inside a flex wrapper */
.mh-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
  align-items: center;
}
.mh-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.mh-scarcity--low { background: #FFF3CD; color: #8B5A00; }
.mh-scarcity--social { background: var(--mh-rose); color: var(--mh-primary-deep); }
.mh-scarcity--hot { background: #FFE0E0; color: #B22222; }

.mh-deliv {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  color: var(--mh-plum-soft);
  background: #F0F9F2;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  line-height: 1.4;
}
.mh-deliv strong { color: #1F8F4C; font-weight: 700; }

/* Extras: gift wrap / order note / voucher collapsibles */
.mh-cart-extras {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.mh-cart-extras__item {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 6px;
  overflow: hidden;
}
.mh-cart-extras__item > summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mh-plum);
  list-style: none;
}
.mh-cart-extras__item > summary::-webkit-details-marker { display: none; }
.mh-cart-extras__chev {
  margin-left: auto;
  font-size: 14px;
  color: var(--mh-muted);
  transition: transform .2s ease;
}
.mh-cart-extras__item[open] .mh-cart-extras__chev { transform: rotate(180deg); }
.mh-cart-extras__body {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mh-cart-extras__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--mh-plum-soft);
  cursor: pointer;
}
.mh-cart-extras__textarea,
.mh-cart-extras__input {
  width: 100%;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  padding: 0.55rem 0.75rem;
  font-size: 13.5px;
  background: #FFFFFF;
  font-family: var(--mh-font-body);
  color: var(--mh-plum);
  resize: vertical;
}
.mh-cart-extras__voucher {
  display: flex;
  gap: 0.4rem;
}
.mh-cart-extras__apply {
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.mh-cart-extras__apply:hover { background: var(--mh-primary); }

/* Express checkout panel */
.mh-express {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.85rem;
}
.mh-express__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin-bottom: 0.65rem;
}
.mh-express__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mh-express__btn {
  height: 46px;
  border: 0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter .15s ease;
}
.mh-express__btn:hover { filter: brightness(1.08); }
.mh-express__btn--mobilepay { background: #5A78FF; color: #FFFFFF; }
.mh-express__btn--applepay { background: #000000; color: #FFFFFF; font-family: -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: -0.02em; }
.mh-express__btn--applepay .mh-express__btn-text::before { content: ""; }
.mh-express__divider {
  text-align: center;
  position: relative;
  margin-top: 0.85rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mh-muted);
}
.mh-express__divider::before,
.mh-express__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: var(--mh-line);
}
.mh-express__divider::before { left: 0; }
.mh-express__divider::after { right: 0; }
.mh-express__divider span { background: #FFFFFF; padding: 0 0.5rem; }

/* Summary card (replaces old plain summary) */
.mh-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(15,15,15,0.04);
}
.mh-summary-card__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--mh-plum);
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

/* Summary card links: gift wrap + voucher — small inline collapsibles */
.mh-summary-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--mh-line);
}
.mh-summary-links__item {
  border: 0;
}
.mh-summary-links__item > summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mh-plum-soft);
  list-style: none;
}
.mh-summary-links__item > summary::-webkit-details-marker { display: none; }
.mh-summary-links__item > summary:hover { color: var(--mh-primary-deep); }
.mh-summary-links__chev {
  margin-left: auto;
  font-size: 13px;
  color: var(--mh-muted);
  transition: transform .2s ease;
}
.mh-summary-links__item[open] .mh-summary-links__chev { transform: rotate(180deg); }
.mh-summary-links__body {
  padding: 0.3rem 0 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.mh-summary-links__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  color: var(--mh-plum-soft);
  cursor: pointer;
}
.mh-summary-links__textarea,
.mh-summary-links__input {
  width: 100%;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  padding: 0.45rem 0.6rem;
  font-size: 12.5px;
  background: #FFFFFF;
  font-family: var(--mh-font-body);
  color: var(--mh-plum);
  resize: vertical;
}
.mh-summary-links__voucher {
  display: flex;
  gap: 0.35rem;
}
.mh-summary-links__apply {
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  padding: 0 0.85rem;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.mh-summary-links__apply:hover { background: var(--mh-primary); }

/* Trust card */
.mh-trust-card {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.mh-trust-card__head {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--mh-line);
  margin-bottom: 0.85rem;
}
.mh-trust-card__tp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum);
}
.mh-trust-card__tp-stars {
  display: inline-flex;
  gap: 1px;
}
.mh-trust-card__tp-stars span {
  width: 14px;
  height: 14px;
  background: var(--mh-tp-green);
  position: relative;
}
.mh-trust-card__tp-stars span::after {
  content: "★";
  position: absolute;
  inset: 0;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}
.mh-trust-card__tp-logo { color: var(--mh-tp-green); font-weight: 800; }
.mh-trust-card__tp-rating {
  font-size: 11.5px;
  color: var(--mh-muted);
  margin-top: 4px;
  font-weight: 500;
}
.mh-trust-card__usps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 12.5px;
  color: var(--mh-plum-soft);
  line-height: 1.4;
}
.mh-trust-card__usps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.mh-trust-card__usps strong { color: var(--mh-plum); font-weight: 700; }

/* Payment icons row */
.mh-pay-row {
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  text-align: center;
}
.mh-pay-row__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin-bottom: 0.55rem;
}
.mh-pay-row__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

/* Replace plain ::before USP row in old override with cleaner card-based version */
body#cart .cart-grid__aside-wrapper::before { content: none !important; display: none !important; }
body#cart .cart-grid__aside-wrapper::after { content: none !important; }

/* Customer testimonials strip */
.mh-cart-reviews {
  margin: 4rem 0 1rem;
  padding: 0 1.5rem;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}
.mh-cart-reviews__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  text-align: center;
  margin: 0 0 1.75rem;
}
.mh-cart-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mh-cart-reviews__card {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mh-cart-reviews__stars {
  color: var(--mh-yellow);
  font-size: 18px;
  letter-spacing: 2px;
}
.mh-cart-reviews__quote {
  font-size: 14px;
  color: var(--mh-plum);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.mh-cart-reviews__author {
  font-size: 12.5px;
  color: var(--mh-muted);
  font-weight: 600;
}

/* Mobile sticky checkout bar */
.mh-mobile-checkout-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: #FFFFFF;
  border-top: 1px solid var(--mh-line);
  box-shadow: 0 -6px 18px rgba(15,15,15,0.08);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
  align-items: center;
  gap: 1rem;
}
.mh-mobile-checkout-bar__total {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
}
.mh-mobile-checkout-bar__label {
  font-size: 11px;
  color: var(--mh-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.mh-mobile-checkout-bar__amount {
  font-size: 17px;
  font-weight: 800;
  color: var(--mh-plum);
}
.mh-mobile-checkout-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(180deg, #2EBD63 0%, #1FA855 100%);
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(31, 168, 85, 0.3);
}
.mh-mobile-checkout-bar__btn:hover {
  background: linear-gradient(180deg, #34CE6E 0%, #25B85F 100%);
  color: #FFFFFF;
}

@media (max-width: 991px) {
  body#cart .mh-mobile-checkout-bar { display: flex; }
  body#cart main, body#cart #wrapper { padding-bottom: 90px !important; }
}

/* Cart page mobile + tablet polish */
@media (max-width: 991px) {
  .mh-checkout-steps { gap: 0.35rem; font-size: 12px; }
  .mh-shipbar { padding: 0.85rem 1rem; }
  .mh-shipbar__head { font-size: 13px; }
  .mh-cart-reviews__grid { grid-template-columns: 1fr; }
  .mh-cart-header__title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .mh-checkout-steps__label { display: none; }
  .mh-checkout-steps__item.is-active .mh-checkout-steps__label { display: inline; }
  .mh-cart-extras__item > summary { font-size: 13px; padding: 0.75rem; }
  .mh-trust-card__usps { font-size: 12px; }
  .mh-cart-reviews { padding: 0 1rem; }
}

/* ============================================================
   HEADER — unified mobile/tablet layout (≤1024px)
   logo + wishlist + cart on top row, full-width search below.
   This is the authoritative rule and overrides earlier media queries.
   ============================================================ */
@media (max-width: 1024px) {
  .mh-header__inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
      "toggle logo icons"
      "search search search" !important;
    padding: 0.65rem 1rem !important;
    row-gap: 0.55rem !important;
    column-gap: 0.6rem !important;
    align-items: center !important;
  }
  .mh-header__brand {
    grid-area: logo;
    justify-self: center !important;
  }
  .mh-header__brand-img { height: 36px; }
  .mh-header__icons {
    grid-area: icons !important;
    display: inline-flex !important;
    gap: 0.15rem !important;
    flex-wrap: nowrap !important;
    justify-self: end !important;
  }
  /* Show only wishlist + cart on mobile/tablet (hide account icon) */
  .mh-header__icons > a[aria-label="Min konto"] { display: none !important; }
  .mh-header__icon-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 0.4rem !important;
  }
  .mh-header__icon-btn .ph { font-size: 22px; }
  .mh-header__mobile-toggle {
    grid-area: toggle !important;
    display: inline-flex !important;
    justify-self: start !important;
  }

  .mh-header__search {
    display: flex !important;
    grid-area: search !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 42px;
    border-radius: 0 !important;
  }
  .mh-header__search-input { font-size: 14px !important; }
}

@media (max-width: 640px) {
  .mh-header__inner { padding: 0.55rem 0.85rem !important; }
  .mh-header__brand-img { height: 32px; }
  .mh-header__icon-btn { width: 38px !important; height: 38px !important; }
  .mh-header__search { height: 40px; }
}

/* Module product blocks inside .mh-container drop their nested Bootstrap
   .container constraint (1320px) so the product grid aligns with the
   1450px page grid. The outer .mh-container already handles max-width + padding. */
.mh-container .module-products.container,
.mh-container .ps-featuredproducts .container,
.mh-container .ps-newproducts .container,
.mh-container .ps-bestsellers .container,
.mh-container section.container,
.mh-hookhome .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ============================================================
   PDP — In-cart note (replaces the global cart-info notification)
   ============================================================ */
body#product #notifications .alert-info { display: none !important; }

.mh-cart-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mh-rose);
  color: var(--mh-plum);
  border-radius: 999px;
  padding: 0.45rem 0.95rem 0.45rem 0.65rem;
  margin: 0.5rem 0 0.85rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid var(--mh-primary-soft);
}
.mh-cart-note .ph {
  font-size: 18px;
  color: var(--mh-primary-deep);
}
.mh-cart-note strong { font-weight: 700; color: var(--mh-primary-deep); }

/* ============================================================
   LOGIN PAGE — premium split layout
   Left: brand storytelling + member perks + Trustpilot
   Right: clean login form + register CTA + USPs
   ============================================================ */

/* Distraction-free login: hide header, breadcrumb, main nav, AND footer.
   Hooks remain in DOM (display:none only). */
body#authentication .breadcrumb__wrapper,
body#authentication .page-title,
body#authentication > #wrapper > h1,
body#authentication #header,
body#authentication header#header,
body#authentication header.header,
body#authentication .header-banner,
body#authentication .header-nav,
body#authentication .header-top,
body#authentication .js-sticky-header,
body#authentication .mh-topbar,
body#authentication .mh-header,
body#authentication header.mh-header,
body#authentication .mh-nav,
body#authentication .mh-floating,
body#authentication .mh-floating__nav,
body#authentication .mh-pre-footer,
body#authentication .mh-footer,
body#authentication #footer,
body#authentication footer.mh-footer,
body#authentication footer#footer { display: none !important; }

/* Slim brand-only header for the login page */
body#authentication::before {
  content: "";
  display: block;
  height: 0;
}

body#authentication #wrapper {
  padding-top: 2.5rem !important;
  padding-bottom: 3rem !important;
  border-top: 0 !important;
  background: #FFFFFF;
}
body#authentication .columns-container.container,
body#authentication #center-column,
body#authentication .columns-container {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
body#authentication hr { display: none !important; }

body#authentication .mh-login-container,
body#authentication .columns-container.container {
  max-width: 1240px !important;
  width: auto !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
}
body#authentication #center-column {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mh-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  box-shadow: 0 8px 40px rgba(15, 15, 15, 0.06);
  min-height: 600px;
}

/* LEFT — benefits panel */
.mh-login__benefits {
  background: linear-gradient(160deg, #FFE8F1 0%, #FFD0E6 45%, #FFC4DD 100%);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mh-login__benefits::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.mh-login__benefits::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.mh-login__benefits-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.mh-login__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mh-primary-deep);
  background: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.mh-login__hero {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--mh-plum);
  margin: 0 0 1rem;
}
.mh-login__lede {
  font-size: 15px;
  line-height: 1.5;
  color: var(--mh-plum-soft);
  margin: 0 0 2rem;
  max-width: 420px;
}

.mh-login__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mh-login__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.mh-login__perk-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(15, 15, 15, 0.05);
}
.mh-login__perks strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--mh-plum);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.mh-login__perks small {
  display: block;
  font-size: 12.5px;
  color: var(--mh-plum-soft);
  line-height: 1.4;
}

.mh-login__tp {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(15, 15, 15, 0.04);
}
.mh-login__tp-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum);
}
.mh-login__tp-stars { display: inline-flex; gap: 1px; }
.mh-login__tp-stars span {
  width: 14px;
  height: 14px;
  background: var(--mh-tp-green);
  position: relative;
}
.mh-login__tp-stars span::after {
  content: "★";
  position: absolute;
  inset: 0;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}
.mh-login__tp-logo { color: var(--mh-tp-green); font-weight: 800; }
.mh-login__tp-meta {
  font-size: 11.5px;
  color: var(--mh-muted);
  font-weight: 500;
}

/* RIGHT — form panel */
.mh-login__form-panel {
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
}
.mh-login__form-inner {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.mh-login__form-head { margin-bottom: 1.5rem; }
.mh-login__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0 0 0.35rem;
}
.mh-login__sub {
  font-size: 13.5px;
  color: var(--mh-muted);
  margin: 0;
}

.mh-login__form-wrap .form-group { margin-bottom: 1rem; }
.mh-login__form-wrap label,
.mh-login__form-wrap .form-control-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mh-plum);
  margin-bottom: 0.4rem;
}
.mh-login__form-wrap .form-control,
.mh-login__form-wrap input[type="email"],
.mh-login__form-wrap input[type="password"],
.mh-login__form-wrap input[type="text"] {
  width: 100%;
  height: 48px;
  border: 1px solid var(--mh-border);
  border-radius: 6px;
  padding: 0 0.95rem;
  font-size: 14.5px;
  font-family: var(--mh-font-body);
  background: #FFFFFF;
  color: var(--mh-plum);
  transition: border-color .15s ease, box-shadow .15s ease;
  box-shadow: none;
}
.mh-login__form-wrap .form-control:focus,
.mh-login__form-wrap input:focus {
  outline: none;
  border-color: var(--mh-primary);
  box-shadow: 0 0 0 3px rgba(255, 61, 154, 0.12);
}

.mh-login__form-wrap .input-group { position: relative; }
.mh-login__form-wrap .input-group .btn,
.mh-login__form-wrap [data-action="show-password"],
.mh-login__form-wrap .show-password {
  position: absolute !important;
  right: 0.4rem !important;
  top: 50% !important;
  transform: translateY(-50%);
  background: transparent !important;
  border: 0 !important;
  color: var(--mh-muted) !important;
  padding: 0.5rem !important;
  height: auto !important;
  min-height: 0 !important;
  width: auto !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mh-login__form-wrap .input-group .btn:hover,
.mh-login__form-wrap [data-action="show-password"]:hover {
  background: transparent !important;
  color: var(--mh-primary-deep) !important;
}

.mh-login__form-wrap .buttons-wrapper {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: nowrap !important;
}
.mh-login__form-wrap .btn-basic,
.mh-login__form-wrap a[href*="password"] {
  background: transparent !important;
  border: 0 !important;
  color: var(--mh-primary-deep) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  padding: 0.5rem 0 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap;
  flex: 0 0 auto;
}
.mh-login__form-wrap .btn-basic:hover { color: var(--mh-primary) !important; }

.mh-login__form-wrap .btn-primary,
.mh-login__form-wrap #submit-login,
.mh-login__form-wrap button[type="submit"] {
  background: var(--mh-plum) !important;
  color: #FFFFFF !important;
  border: 0 !important;
  border-radius: 6px !important;
  padding: 0 1.5rem !important;
  height: 50px !important;
  min-height: 50px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: all .15s ease !important;
  flex: 1 1 auto;
}
.mh-login__form-wrap .btn-primary:hover,
.mh-login__form-wrap #submit-login:hover {
  background: var(--mh-primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 61, 154, 0.25);
}

.mh-login__divider {
  position: relative;
  text-align: center;
  margin: 1.75rem 0 1.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--mh-muted);
}
.mh-login__divider::before,
.mh-login__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: var(--mh-line);
}
.mh-login__divider::before { left: 0; }
.mh-login__divider::after { right: 0; }
.mh-login__divider span { background: #FFFFFF; padding: 0 0.65rem; }

.mh-login__register {
  text-align: center;
  margin-bottom: 1.5rem;
}
.mh-login__register p {
  font-size: 13.5px;
  color: var(--mh-plum-soft);
  margin: 0 0 0.55rem;
}
.mh-login__register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  background: #FFFFFF;
  color: var(--mh-plum);
  border: 1.5px solid var(--mh-plum);
  border-radius: 6px;
  padding: 0 1.5rem;
  height: 48px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .15s ease;
}
.mh-login__register-btn:hover {
  background: var(--mh-plum);
  color: #FFFFFF;
  text-decoration: none;
}

.mh-login__usp-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mh-line);
  font-size: 11.5px;
  color: var(--mh-muted);
}
.mh-login__usp-row span span { margin-right: 0.25rem; }

.mh-login__form-wrap .alert-danger {
  background: #FFF0F0;
  border: 1px solid #FFCBCB;
  color: #B22222;
  border-radius: 6px;
  padding: 0.7rem 0.95rem;
  font-size: 13px;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .mh-login { grid-template-columns: 1fr; min-height: 0; }
  .mh-login__benefits { padding: 2rem 1.5rem 2.25rem; }
  .mh-login__hero { font-size: 1.5rem; }
  .mh-login__lede { font-size: 14px; }
  .mh-login__perks { gap: 0.75rem; margin-bottom: 1.5rem; }
  .mh-login__form-panel { padding: 2rem 1.5rem 2.5rem; }
  .mh-login__form-inner { max-width: 100%; }
  body#authentication #wrapper { padding-top: 1.5rem !important; }
}
@media (max-width: 600px) {
  .mh-login__benefits { padding: 1.5rem 1.25rem; }
  .mh-login__perks li { gap: 0.65rem; }
  .mh-login__perk-icon { width: 32px; height: 32px; font-size: 16px; }
  body#authentication .mh-login-container,
  body#authentication .columns-container.container { padding: 0 0.85rem !important; }
}

/* ============================================================
   PDP price line — current price + discount badges + "inkl. moms"
   all on one row, badges/label sitting to the right of the price.
   ============================================================ */
.product__price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.55rem;
}

/* Tax label ("inkl. moms") — muted, sits inline to the right of the badges */
.product__price-line .product__tax-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-muted);
  white-space: nowrap;
}

/* Unit price stays inline too, muted */
.product__price-line .product__unit-price {
  font-size: 13px;
  color: var(--mh-muted);
}

/* Product card hover swap — second image visible on hover */
.mh-card__media,
.mh-card__media-link {
  position: relative;
}
.mh-card__img--primary,
.mh-card__img--hover {
  transition: opacity .25s ease;
}
.mh-card__img--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
}
/* Only fade the primary out on hover when a real hover image is present.
   Without `:has()`, cards with only one image showed empty space on hover. */
.mh-card:has(.mh-card__img--hover):hover .mh-card__img--primary { opacity: 0; }
.mh-card:hover .mh-card__img--hover { opacity: 1; }
@media (hover: none) {
  .mh-card__img--hover { display: none; }
}

/* ============================================================
   404 PAGE — simple, premium, brand-consistent
   ============================================================ */

/* Hide chrome on 404 for focus (keep header & footer though — easy navigation) */
body#pagenotfound .breadcrumb__wrapper,
body.error-404 .breadcrumb__wrapper { display: none !important; }

body#pagenotfound #wrapper,
body.error-404 #wrapper {
  padding-top: 3rem !important;
  padding-bottom: 4rem !important;
}

body#pagenotfound .mh-404-container,
body.error-404 .mh-404-container {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
}
body#pagenotfound #center-column,
body.error-404 #center-column {
  max-width: none !important;
  padding: 0 !important;
}

.mh-404 {
  text-align: center;
  padding: 3rem 1.5rem;
}
.mh-404__inner {
  max-width: 540px;
  margin: 0 auto;
}

.mh-404__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  font-family: var(--mh-font-heading);
  font-weight: 600;
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  color: var(--mh-plum);
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.mh-404__zero {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-primary);
}
.mh-404__zero svg {
  width: 100%;
  height: 100%;
}

.mh-404__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0 0 0.65rem;
}
.mh-404__sub {
  font-size: 15px;
  color: var(--mh-plum-soft);
  line-height: 1.55;
  margin: 0 auto 2rem;
  max-width: 460px;
}

.mh-404__search {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 1.75rem;
  border: 1.5px solid var(--mh-border);
  border-radius: 999px;
  background: #FFFFFF;
  transition: border-color .15s ease, box-shadow .15s ease;
  padding: 0.35rem 0.45rem 0.35rem 1.25rem;
  gap: 0.5rem;
  height: 56px;
}
.mh-404__search:focus-within {
  border-color: var(--mh-plum);
  box-shadow: 0 4px 16px rgba(15, 15, 15, 0.06);
}
.mh-404__search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-muted);
  flex-shrink: 0;
}
.mh-404__search-input {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 14.5px;
  font-family: var(--mh-font-body);
  color: var(--mh-plum);
  outline: none;
  height: 100%;
  min-width: 0;
}
.mh-404__search-input::placeholder { color: var(--mh-muted); }
.mh-404__search-btn {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 1.5rem;
  background: var(--mh-plum);
  color: #FFFFFF;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
}
.mh-404__search-btn:hover { background: var(--mh-primary); }

.mh-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}
.mh-404__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.5rem;
  height: 48px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .15s ease;
}
.mh-404__cta--primary {
  background: var(--mh-plum);
  color: #FFFFFF;
}
.mh-404__cta--primary:hover {
  background: var(--mh-primary);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 61, 154, 0.2);
}
.mh-404__cta--ghost {
  background: transparent;
  color: var(--mh-plum);
  border: 1.5px solid var(--mh-border);
}
.mh-404__cta--ghost:hover {
  border-color: var(--mh-plum);
  background: var(--mh-rose);
  color: var(--mh-plum);
}

.mh-404__popular {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mh-line);
  font-size: 13px;
  color: var(--mh-muted);
}
.mh-404__popular-label {
  font-weight: 600;
  color: var(--mh-plum-soft);
}
.mh-404__popular a {
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color .15s ease;
}
.mh-404__popular a:hover { color: var(--mh-primary-deep); }

@media (max-width: 600px) {
  .mh-404 { padding: 2rem 0.85rem; }
  .mh-404__num { font-size: 5rem; }
  .mh-404__title { font-size: 1.35rem; }
  .mh-404__sub { font-size: 14px; }
  .mh-404__actions { flex-direction: column; }
  .mh-404__cta { width: 100%; justify-content: center; }
  .mh-404__popular { font-size: 12.5px; }
}

/* GRID GUTTERS rule removed — it forced 85px side padding on header /
   .mh-container / rail but NOT on .mh-campaigns / .mh-bzgrid / .mh-bzusp,
   so product sections sat 62px further in than the banner sections.
   Every section now uses the uniform grid: max-width 1450px, centered,
   var(--bz-pad) side padding — see .mh-container / .mh-campaigns etc. */

/* ============================================================
   MOBILE POLISH PASS — frontpage sections (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  /* Promo image tiles edge-to-edge, 2px gap */
  .mh-bzgrid {
    gap: 2px !important;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  .mh-bzgrid--2sq,
  .mh-bzgrid--4,
  .mh-bzgrid--4p,
  .mh-bzgrid--2ld { grid-template-columns: 1fr 1fr !important; }
  .mh-bzgrid__tile { border-radius: 0; }

  /* Campaign cards: tighter 2-col, 2px gutter */
  .mh-campaigns__grid { gap: 2px !important; }

  /* USP service strip — clean 2-col cards with subtle surface */
  .mh-bzusp {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    padding: 2rem 0.85rem !important;
  }
  .mh-bzusp__card {
    background: #FAFAFA;
    border: 1px solid var(--mh-line);
    border-radius: 10px;
    padding: 1rem 0.85rem !important;
    gap: 0.3rem !important;
  }
  .mh-bzusp__card i { font-size: 22px; margin-bottom: 0.15rem; }
  .mh-bzusp__card h4 { font-size: 13px; }
  .mh-bzusp__card p { font-size: 11.5px; line-height: 1.4; }
  .mh-bzusp__card a { font-size: 11.5px; }

  /* Reviews section — fully centered */
  .mh-reviews-section__head { grid-template-columns: 1fr !important; text-align: center; gap: 1rem; }
  .mh-reviews-section__score,
  .mh-reviews-section__title-block { align-items: center !important; }
  .mh-reviews-section__stars,
  .mh-reviews-section__brand,
  .mh-reviews-section__more { justify-content: center; }
  .mh-reviews-section__more { display: inline-flex; margin: 0 auto; }

  /* Newsletter — stacked, cleaner card (not a cramped pill) */
  .mh-newsletter { padding: 2.5rem 0; }
  .mh-newsletter__inner { padding: 0 1.25rem; }
  .mh-newsletter__title { font-size: 1.6rem; }
  .mh-newsletter__lede { font-size: 0.9rem; margin-bottom: 1.1rem; }
  .mh-newsletter__form {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 0.5rem;
    max-width: 340px;
  }
  .mh-newsletter__input {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0.95rem 1.1rem;
    width: 100%;
    text-align: center;
  }
  .mh-newsletter__btn {
    width: 100%;
    border-radius: 10px;
    padding: 0.95rem 1rem;
    background: var(--mh-primary);
  }

  /* Footer — 40px side padding on mobile */
  .mh-footer__inner,
  .mh-footer__bottom-row { padding-left: 40px !important; padding-right: 40px !important; }
}

/* ============================================================
   PRODUCT IMAGE LIGHTBOX MODAL — fit image to viewport
   ============================================================ */
.product-images-modal.modal { z-index: 1060; }
.product-images-modal .modal-dialog {
  max-width: min(900px, 92vw);
  margin: 1.75rem auto;
}
.product-images-modal .modal-content {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}
.product-images-modal .modal-header {
  border: 0;
  padding: 0.85rem 1rem;
  position: relative;
}
.product-images-modal .modal-header .btn-close {
  margin: 0 0 0 auto;
  z-index: 2;
}
.product-images-modal__body,
.product-images-modal .modal-body {
  padding: 0 1.5rem 1.5rem;
}
.product-images-modal .carousel-item {
  display: none;
  text-align: center;
}
.product-images-modal .carousel-item.active {
  display: block;
}
.product-images-modal .carousel-item img,
.product-images-modal__body img {
  width: auto !important;
  max-width: 100%;
  max-height: 72vh;
  margin: 0 auto;
  object-fit: contain;
}
.product-images-modal .carousel-control-prev,
.product-images-modal .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 1px solid var(--mh-border);
  border-radius: 50%;
  opacity: 1;
}
.product-images-modal .carousel-control-prev { left: 0.75rem; }
.product-images-modal .carousel-control-next { right: 0.75rem; }
.product-images-modal .carousel-control-prev-icon,
.product-images-modal .carousel-control-next-icon { filter: invert(1); width: 18px; height: 18px; }

@media (max-width: 600px) {
  .product-images-modal .modal-dialog { margin: 0.75rem; max-width: calc(100vw - 1.5rem); }
  .product-images-modal .carousel-item img,
  .product-images-modal__body img { max-height: 65vh; }
}

/* ============================================================
   MOBILE NAV DRAWER — slide-in menu from the burger
   ============================================================ */
.mh-mobnav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  z-index: 1090;
  opacity: 0;
  transition: opacity .28s ease;
}
.mh-mobnav-overlay.is-open { opacity: 1; }

.mh-mobnav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 84vw;
  max-width: 340px;
  background: #FFFFFF;
  z-index: 1095;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(15, 15, 15, 0.12);
  overflow-y: auto;
}
.mh-mobnav.is-open { transform: translateX(0); }

.mh-mobnav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--mh-line);
}
.mh-mobnav__title {
  font-family: var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--mh-plum);
  letter-spacing: -0.01em;
}
.mh-mobnav__close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--mh-plum);
  cursor: pointer;
  border-radius: 50%;
}
.mh-mobnav__close:hover { background: var(--mh-rose); }
.mh-mobnav__close i { font-size: 22px; }

.mh-mobnav__nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.mh-mobnav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: none;
  border-bottom: 1px solid var(--mh-line);
}
.mh-mobnav__link:active { background: var(--mh-rose); }
.mh-mobnav__link--accent { color: var(--mh-primary-deep); }

.mh-mobnav__foot {
  margin-top: auto;
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--mh-line);
}
.mh-mobnav__util {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--mh-plum-soft);
  text-decoration: none;
}
.mh-mobnav__util i { font-size: 19px; color: var(--mh-plum); }
.mh-mobnav__util:active { color: var(--mh-primary-deep); }

/* Only relevant on small screens; keep hidden on desktop */
@media (min-width: 1025px) {
  .mh-mobnav, .mh-mobnav-overlay { display: none !important; }
}

/* ============================================================
   SCROLLING PROMO MARQUEE — infinite horizontal ticker
   (two identical groups; track translates -50% for seamless loop)
   ============================================================ */
/* Styled to match moebelkompagniet.dk: light-grey strip, black 15px text,
   30s linear infinite scroll. */
.mh-marquee {
  background: #E1E1E1;
  color: #000000;
  overflow: hidden;
  position: relative;
}
.mh-marquee__track {
  display: flex;
  width: max-content;
  animation: mh-marquee-scroll 30s linear infinite;
}
.mh-marquee:hover .mh-marquee__track {
  animation-play-state: paused;
}
.mh-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mh-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
  color: #000000;
}
.mh-marquee__item i {
  font-size: 17px;
  color: #000000;
}
.mh-marquee__sep {
  padding: 0 1.75rem;
  color: #000000;
  font-size: 13px;
}

@keyframes mh-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .mh-marquee__item { font-size: 10.5px; }
  .mh-marquee__sep { padding: 0 1.25rem; }
}

/* ============================================================
   KUNDESERVICE / CONTACT PAGE
   ============================================================ */
body#contact .breadcrumb__wrapper { display: none !important; }
body#contact #wrapper { padding-top: 2rem !important; padding-bottom: 3rem !important; }

.mh-ks {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mh-ks__hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mh-ks__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mh-primary-deep);
  background: var(--mh-rose);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.mh-ks__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.025em;
  color: var(--mh-plum);
  margin: 0 0 0.65rem;
}
.mh-ks__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mh-plum-soft);
  margin: 0 auto;
  max-width: 52ch;
}

/* Contact method cards */
.mh-ks__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.mh-ks__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.mh-ks__card:hover {
  border-color: var(--mh-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 61, 154, 0.1);
}
.mh-ks__card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mh-rose);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.mh-ks__card-icon i { font-size: 24px; color: var(--mh-primary-deep); }
.mh-ks__card-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--mh-plum);
}
.mh-ks__card-value {
  font-size: 14px;
  color: var(--mh-plum);
  font-weight: 600;
}
.mh-ks__card-meta {
  font-size: 12px;
  color: var(--mh-muted);
}

/* Split: hours + quick links */
.mh-ks__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.mh-ks__panel {
  background: #FAFAFA;
  border: 1px solid var(--mh-line);
  border-radius: 12px;
  padding: 1.5rem;
}
.mh-ks__panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mh-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--mh-plum);
  margin: 0 0 1rem;
}
.mh-ks__panel-title i { font-size: 18px; color: var(--mh-primary-deep); }
.mh-ks__hours {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}
.mh-ks__hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--mh-line);
  font-size: 13.5px;
  color: var(--mh-plum-soft);
}
.mh-ks__hours li:last-child { border-bottom: 0; }
.mh-ks__hours strong { color: var(--mh-plum); font-weight: 700; }
.mh-ks__note {
  font-size: 12.5px;
  color: var(--mh-muted);
  line-height: 1.5;
  margin: 0;
}
.mh-ks__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mh-ks__links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: none;
  border-bottom: 1px solid var(--mh-line);
}
.mh-ks__links li:last-child a { border-bottom: 0; }
.mh-ks__links a i { font-size: 17px; color: var(--mh-primary-deep); }
.mh-ks__links a:hover { color: var(--mh-primary-deep); }

/* Section titles */
.mh-ks__section-title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  text-align: center;
  margin: 0 0 0.4rem;
}
.mh-ks__section-sub {
  font-size: 14px;
  color: var(--mh-muted);
  text-align: center;
  margin: 0 0 1.75rem;
}

/* Contact form section */
.mh-ks__form-section { margin-bottom: 3rem; }
.mh-ks__form-wrap {
  background: #FFFFFF;
  border: 1px solid var(--mh-line);
  border-radius: 12px;
  padding: 1.75rem;
}
.mh-ks__form-wrap .form-control,
.mh-ks__form-wrap textarea,
.mh-ks__form-wrap input[type="text"],
.mh-ks__form-wrap input[type="email"] {
  border: 1px solid var(--mh-border);
  border-radius: 6px;
  font-size: 14px;
}
.mh-ks__form-wrap .btn-primary,
.mh-ks__form-wrap button[type="submit"] {
  background: var(--mh-plum) !important;
  border: 0 !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem !important;
}
.mh-ks__form-wrap .btn-primary:hover { background: var(--mh-primary) !important; }

/* FAQ accordion */
.mh-ks__faq { margin-bottom: 2rem; }
.mh-ks__faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mh-line);
  border-radius: 12px;
  overflow: hidden;
}
.mh-ks__faq-item {
  border-bottom: 1px solid var(--mh-line);
  background: #FFFFFF;
}
.mh-ks__faq-item:last-child { border-bottom: 0; }
.mh-ks__faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mh-plum);
  list-style: none;
}
.mh-ks__faq-item > summary::-webkit-details-marker { display: none; }
.mh-ks__faq-chev {
  font-size: 16px;
  color: var(--mh-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.mh-ks__faq-item[open] .mh-ks__faq-chev { transform: rotate(180deg); }
.mh-ks__faq-body {
  padding: 0 1.35rem 1.2rem;
}
.mh-ks__faq-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--mh-plum-soft);
}
.mh-ks__faq-body strong { color: var(--mh-plum); font-weight: 700; }

.mh-ks__faq-cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 14px;
  color: var(--mh-plum-soft);
}
.mh-ks__faq-cta a {
  font-weight: 700;
  color: var(--mh-primary-deep);
  text-decoration: none;
  margin-left: 0.35rem;
}
.mh-ks__faq-cta a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .mh-ks__cards { grid-template-columns: 1fr; }
  .mh-ks__split { grid-template-columns: 1fr; }
  .mh-ks__form-wrap { padding: 1.25rem; }
}

/* ============================================================
   FOOTER — mobile accordions + centered polish
   ============================================================ */
/* Desktop: groups are plain columns, summary acts as a heading */
.mh-footer__group > summary { list-style: none; }
.mh-footer__group > summary::-webkit-details-marker { display: none; }
.mh-footer__chev {
  display: none;
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .mh-footer__group > summary { cursor: default; pointer-events: none; }
}

/* Contact page — drop the default left column */
body#contact #left-column,
body#contact .wrapper__left-column { display: none !important; }
body#contact #content-wrapper,
body#contact #center-column {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

@media (max-width: 768px) {
  /* Each footer link group becomes a collapsible accordion */
  .mh-footer__linkgrid {
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
  }
  .mh-footer__group {
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  }
  .mh-footer__group > summary.mh-footer__heading {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0.25rem !important;
    margin: 0 !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
  }
  .mh-footer__chev { display: block; }
  .mh-footer__group[open] .mh-footer__chev { transform: rotate(225deg); }
  .mh-footer__list {
    padding: 0 0.25rem 0.85rem !important;
    margin: 0 !important;
  }
  .mh-footer__list li { padding: 0.4rem 0; }

  /* Center the brand + contact columns on mobile */
  .mh-footer__col--brand,
  .mh-footer__col--contact { text-align: center; }
  .mh-footer__col--brand .mh-footer__brand,
  .mh-footer__col--brand .mh-footer__locale { margin-left: auto; margin-right: auto; }
  .mh-footer__socials { justify-content: center; }
  .mh-footer__tp { margin-left: auto; margin-right: auto; }

  /* Center the integrated base row */
  .mh-footer__base {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  .mh-footer__pays { justify-content: center; flex-wrap: wrap; }
  .mh-footer__legal { justify-content: center; flex-wrap: wrap; }
}

/* ============================================================
   BRANDS A–Z INDEX PAGE (Matas-style alphabetical)
   ============================================================ */
body#manufacturer .breadcrumb__wrapper { display: none !important; }

/* Drop the category sidebar on the brands page — full-width index */
body#manufacturer #left-column,
body#manufacturer #right-column,
body#manufacturer .wrapper__left-column { display: none !important; }
body#manufacturer #content-wrapper,
body#manufacturer #center-column {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.mh-brands {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}
.mh-brands__hero {
  text-align: center;
  margin-bottom: 1.75rem;
}
.mh-brands__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mh-plum-soft);
  background: #F2F2F0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.mh-brands__title {
  font-family: var(--mh-font-heading);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.025em;
  color: var(--mh-plum);
  margin: 0 0 0.55rem;
}
.mh-brands__lede {
  font-size: 14.5px;
  color: var(--mh-plum-soft);
  margin: 0;
}

/* Sticky A–Z jump bar */
.mh-brands__az {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--mh-line);
  border-bottom: 1px solid var(--mh-line);
  margin-bottom: 2.5rem;
}
.mh-brands__az-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.mh-brands__az-link:hover {
  background: var(--mh-plum);
  color: #FFFFFF;
}
.mh-brands__az-link--off {
  color: var(--mh-soft);
  pointer-events: none;
  opacity: 0.4;
}

/* Letter groups */
.mh-brands__groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mh-brands__group {
  scroll-margin-top: 70px;
}
.mh-brands__letter {
  font-family: var(--mh-font-heading);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--mh-plum);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #DADAD8;
}
.mh-brands__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem 1.25rem;
}
.mh-brands__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}
.mh-brands__brand:hover { background: #F4F4F2; }
.mh-brands__brand-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mh-plum);
}
.mh-brands__brand:hover .mh-brands__brand-name { color: var(--mh-plum); }
.mh-brands__brand-count {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mh-muted);
  background: #EFEFED;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .mh-brands__items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mh-brands { padding: 1rem 0.85rem 2.5rem; }
  .mh-brands__items { grid-template-columns: 1fr; }
  .mh-brands__az-link { width: 28px; height: 28px; font-size: 12px; }
  .mh-brands__letter { font-size: 1.5rem; }
}

/* Brand logo in the manufacturer hero (reuses .mh-cat-hero styling) */
.mh-cat-hero__brandlogo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F7F5;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  max-width: 200px;
}
.mh-cat-hero__brandlogo img {
  max-height: 64px;
  width: auto;
  mix-blend-mode: multiply;
}

/* ============================================================
   ORDER CONFIRMATION — premium themed layout
   ============================================================ */
.mh-oc {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* --- Success hero --- */
.mh-oc__hero {
  text-align: center;
  background: linear-gradient(170deg, var(--mh-rose, #fdeef5) 0%, #fff 70%);
  border: 1px solid var(--mh-line, #eeecf3);
  border-radius: 20px;
  padding: 2.75rem 1.5rem 2.25rem;
}
.mh-oc__check {
  display: inline-flex;
  width: 72px;
  height: 72px;
  color: #1f8f4e;
  margin-bottom: 1.1rem;
}
.mh-oc__check svg { width: 100%; height: 100%; }
.mh-oc__check path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: mh-oc-draw .5s .15s ease forwards;
}
@keyframes mh-oc-draw { to { stroke-dashoffset: 0; } }
.mh-oc__title {
  font-family: var(--mh-font-heading, inherit);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  color: var(--mh-plum, #1a1320);
  margin: 0 0 0.5rem;
}
.mh-oc__lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mh-plum-soft, #6b6470);
  margin: 0 auto;
  max-width: 46ch;
}
.mh-oc__invoice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding: 0.6rem 1.15rem;
  background: #fff;
  border: 1px solid var(--mh-border, #e6e7eb);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum, #1a1320);
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease;
}
.mh-oc__invoice:hover {
  border-color: var(--mh-primary, #ff3d9a);
  color: var(--mh-primary-deep, #c81e74);
}
.mh-oc__invoice .material-icons { font-size: 17px; }

/* --- Cards --- */
.mh-oc__card {
  background: #fff;
  border: 1px solid var(--mh-line, #eeecf3);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 1px 3px rgba(15, 15, 15, 0.04);
}
.mh-oc__card-title {
  font-family: var(--mh-font-heading, inherit);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--mh-plum, #1a1320);
  margin: 0 0 1rem;
}

/* --- Order meta grid --- */
.mh-oc__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  background: var(--mh-cream, #f7f4ef);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.mh-oc__meta-item { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.mh-oc__meta-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mh-muted, #6b6470);
}
.mh-oc__meta-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mh-plum, #1a1320);
  word-break: break-word;
}

/* --- Product table (styles the included partial) --- */
.mh-oc__table .order-confirmation__product {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--mh-line, #eeecf3);
}
.mh-oc__table .order-confirmation__product:first-child { padding-top: 0; }
.mh-oc__table .order-confirmation__product-image {
  position: relative;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--mh-cream, #f7f4ef);
  border: 1px solid var(--mh-line, #eeecf3);
}
.mh-oc__table .order-confirmation__product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.mh-oc__table .order-confirmation__product-quantity {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mh-plum, #1a1320);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin: 0;
}
.mh-oc__table .order-confirmation__product-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.mh-oc__table .order-confirmation__product-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mh-plum, #1a1320);
  margin: 0 0 0.2rem;
  line-height: 1.35;
}
.mh-oc__table .order-confirmation__product-attributes,
.mh-oc__table .order-confirmation__product-reference {
  font-size: 11.5px;
  color: var(--mh-muted, #6b6470);
  margin: 0;
}
.mh-oc__table .order-confirmation__product-price {
  font-size: 12px;
  color: var(--mh-muted, #6b6470);
  margin-top: 0.15rem;
}
.mh-oc__table .order-confirmation__product-total {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--mh-plum, #1a1320);
  white-space: nowrap;
}
.mh-oc__table hr {
  border: 0;
  border-top: 1px solid var(--mh-line, #eeecf3);
  margin: 0.85rem 0;
}
.mh-oc__table .order-confirmation__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 13.5px;
  color: var(--mh-plum-soft, #6b6470);
  padding: 0.2rem 0;
}
.mh-oc__table .order-confirmation__line--bold {
  font-weight: 800;
  font-size: 15px;
  color: var(--mh-plum, #1a1320);
}
.mh-oc__table .order-confirmation__line--bold:last-child .order-confirmation__line-value {
  color: var(--mh-primary-deep, #c81e74);
}

/* --- Hooks injected by payment / confirmation modules --- */
.mh-oc__hook {
  background: #fff;
  border: 1px solid var(--mh-line, #eeecf3);
  border-radius: 18px;
  padding: 1.25rem 1.6rem;
}
.mh-oc__hook:empty { display: none; }

/* --- Continue shopping --- */
.mh-oc__actions { text-align: center; margin-top: 0.5rem; }
.mh-oc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  background: var(--mh-ink, #1a1320);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background .15s ease, transform .12s ease;
}
.mh-oc__btn:hover {
  background: var(--mh-primary, #ff3d9a);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .mh-oc { padding: 1rem 0.85rem 3rem; gap: 1rem; }
  .mh-oc__hero { padding: 2rem 1.1rem 1.75rem; border-radius: 16px; }
  .mh-oc__check { width: 60px; height: 60px; }
  .mh-oc__card,
  .mh-oc__hook { padding: 1.2rem 1.1rem; border-radius: 14px; }
}

/* ============================================================
   Mobile header / footer / section refinements
   ============================================================ */

/* Campaign cards — hide the date line everywhere */
.mh-campaigns__date { display: none !important; }

@media (max-width: 991.98px) {
  /* Hide the scrolling promo marquee on mobile */
  .mh-marquee { display: none !important; }
  /* Remove the divider line under the header on mobile */
  .mh-header { border-bottom: 0 !important; }
}

@media (max-width: 768px) {
  /* Newsletter section — compressed */
  .mh-newsletter { padding: 1.75rem 0 !important; }
  .mh-newsletter__eyebrow { margin-bottom: 0.4rem !important; }
  .mh-newsletter__title { font-size: 1.25rem !important; margin-bottom: 0.4rem !important; }
  .mh-newsletter__lede { font-size: 12.5px !important; line-height: 1.5 !important; margin-bottom: 0.85rem !important; }
  .mh-newsletter__fine { margin-top: 0.7rem !important; font-size: 10.5px !important; }

  /* Footer — brand/address block drops to the bottom */
  .mh-footer__col--brand { order: 9; }
}

@media (max-width: 640px) {
  /* Logo — smaller and sitting next to the burger menu (not centered) */
  .mh-header__brand { justify-self: start !important; }
  .mh-header__brand-img { height: 24px !important; }

  /* Search bar — edge-to-edge full width */
  .mh-header__inner { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .mh-header__search {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
    width: calc(100% + 1.5rem) !important;
    max-width: calc(100% + 1.5rem) !important;
    border-radius: 0 !important;
  }
}

/* ============================================================
   Mobile product page — kill horizontal scroll + center image
   ============================================================ */
@media (max-width: 1023px) {
  /* Grid/flex children must be allowed to shrink, else the bm_addons
     slider's wide content widens the column and scrolls the page */
  body#product .product__container.product-container,
  body#product .product__left,
  body#product .product__right,
  body#product .product__additional-info,
  body#product .js-product-additional-info,
  body#product .product__actions,
  body#product #add-to-cart-or-refresh { min-width: 0; max-width: 100%; }

  /* bm_addons block + slider clamped to the column width */
  body#product .bm-addons,
  body#product .bm-addons__grid { max-width: 100%; }
  body#product .bm-addons__grid { overflow-x: auto; }
}

/* ============================================================
   PDP — Trustpilot review slider (below the product image)
   ============================================================ */
.mh-pdp-tp {
  margin: 3rem 0 0.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.mh-pdp-tp__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.mh-pdp-tp__stars { display: inline-flex; gap: 2px; }
.mh-pdp-tp__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #00B67A;
  border-radius: 3px;
}
.mh-pdp-tp__star svg { width: 12px; height: 12px; fill: #fff; }
.mh-pdp-tp__score {
  font-size: 13px;
  font-weight: 400;
  color: var(--mh-plum);
}
.mh-pdp-tp__meta {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--mh-muted, #6F6E76);
  margin-left: auto;
}
.mh-pdp-tp__viewport { overflow: hidden; }
.mh-pdp-tp__track {
  display: flex;
  width: 100%;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.mh-pdp-tp__slide {
  flex: 0 0 33.333%;
  min-width: 0;
  padding: 0 0.6rem;
  box-sizing: border-box;
}
.mh-pdp-tp__text {
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--mh-plum);
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mh-pdp-tp__byline {
  font-size: 12px;
  font-weight: 400;
  color: var(--mh-muted, #6F6E76);
  margin: 0;
}
.mh-pdp-tp__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.85rem;
}
.mh-pdp-tp__dot {
  width: 6px; height: 6px;
  border: 0; border-radius: 50%;
  background: var(--mh-line);
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.mh-pdp-tp__dot.is-active {
  background: #00B67A;
  transform: scale(1.45);
}
.mh-pdp-tp__dot:hover { background: var(--mh-primary); }

@media (max-width: 1000px) {
  .mh-pdp-tp__slide { flex-basis: 50%; }
}
@media (max-width: 700px) {
  .mh-pdp-tp__meta { width: 100%; margin-left: 0; }
  .mh-pdp-tp__slide { flex-basis: 100%; padding: 0; }
}

/* ============================================================
   FAST LAV PRIS — Matas-style yellow promo banner
   ============================================================ */
.mh-fast-promo {
  background: #FBE56A;
  margin: 1.5rem 0;
}
.mh-fast-promo__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mh-fast-promo__media {
  position: relative;
  background: #C7DEF4;
  border-radius: 4px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  isolation: isolate;
}
.mh-fast-promo__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.22) 14px 28px);
  z-index: 0;
}
.mh-fast-promo__product {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mh-fast-promo__product img {
  max-height: 78%;
  max-width: 60%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.10));
}
.mh-fast-promo__badge {
  position: absolute;
  right: 12%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translateY(-50%) rotate(-6deg);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-fast-promo__burst {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
.mh-fast-promo__badge-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  line-height: 1;
}
.mh-fast-promo__badge-kicker {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
.mh-fast-promo__badge-price {
  display: block;
  font-family: var(--mh-head, var(--bs-body-font-family));
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.mh-fast-promo__badge-price sup {
  font-size: 50%;
  vertical-align: super;
  top: -0.2em;
  font-weight: 700;
}
.mh-fast-promo__badge-foot {
  display: block;
  font-size: 10px;
  font-weight: 400;
}
.mh-fast-promo__body {
  padding: 1rem 0;
}
.mh-fast-promo__kicker {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--mh-plum);
  margin: 0 0 0.85rem;
}
.mh-fast-promo__title {
  font-family: var(--mh-head, var(--bs-body-font-family));
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mh-plum);
  margin: 0 0 1.25rem;
}
.mh-fast-promo__cta {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mh-plum);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mh-fast-promo__cta:hover { color: var(--mh-primary-deep); }

@media (max-width: 900px) {
  .mh-fast-promo__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .mh-fast-promo__media { aspect-ratio: 16 / 9; }
  .mh-fast-promo__body { padding: 0 0 0.5rem; text-align: center; }
}
@media (max-width: 600px) {
  .mh-fast-promo__badge { width: 110px; height: 110px; right: 6%; }
  .mh-fast-promo__badge-price { font-size: 1.7rem; }
}

/* ============================================================
   HOMEPAGE MAGAZINE / BLOG TEASER
   Left column: title + description + category list
   Right column: 4 latest article cards (2×2 grid)
   ============================================================ */
.mh-mag-home {
  background: #FFFFFF;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.mh-mag-home__inner {
  max-width: var(--bz-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--bz-pad, 1.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: start;
}

/* ---------- Left intro ---------- */
.mh-mag-home__intro {
  position: sticky;
  top: 1.5rem;
}
.mh-mag-home__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mh-muted, #6b6470);
  margin-bottom: 0.85rem;
}
.mh-mag-home__title {
  font-family: "Bricolage Grotesque", var(--mh-font-heading, inherit);
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--mh-plum, #1a1320);
  margin: 0 0 0.85rem;
}
.mh-mag-home__lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mh-plum-soft, #6b6470);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}
.mh-mag-home__cats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}
.mh-mag-home__cats a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: var(--mh-cream, #f7f4ef);
  border: 1px solid var(--mh-line, #eeecf3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum, #1a1320);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.mh-mag-home__cats a:hover {
  background: var(--mh-rose, #fdeef5);
  border-color: var(--mh-primary, #ff3d9a);
  color: var(--mh-primary-deep, #c81e74);
}
.mh-mag-home__all {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mh-plum, #1a1320);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mh-mag-home__all:hover { color: var(--mh-primary-deep, #c81e74); }

/* ---------- Right grid of article cards ---------- */
.mh-mag-home__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.4rem;
}
.mh-mag-home__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--mh-line, #eeecf3);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.mh-mag-home__card:hover {
  border-color: var(--mh-primary, #ff3d9a);
  box-shadow: 0 12px 26px rgba(15, 15, 15, 0.08);
  transform: translateY(-3px);
}
.mh-mag-home__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mh-cream, #f7f4ef);
}
.mh-mag-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.mh-mag-home__card:hover .mh-mag-home__media img { transform: scale(1.04); }
.mh-mag-home__body {
  padding: 1.05rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.mh-mag-home__cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--mh-primary-deep, #c81e74);
}
.mh-mag-home__cardtitle {
  font-family: "Bricolage Grotesque", var(--mh-font-heading, inherit);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--mh-plum, #1a1320);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .mh-mag-home__inner { grid-template-columns: 1fr; gap: 2rem; }
  .mh-mag-home__intro { position: static; }
}
@media (max-width: 600px) {
  .mh-mag-home { padding: 2rem 0; }
  .mh-mag-home__grid { grid-template-columns: 1fr; gap: 1rem; }
  .mh-mag-home__title { font-size: 1.5rem; }
  .mh-mag-home__lede { font-size: 13.5px; }
}

/* ============================================================
   /blog index — intro block (title + description + categories)
   above the first article block.
   ============================================================ */
/* Intro now lives INSIDE the first column of .bm-mag-hero3 — no outer width / centering */
body .bm-mag-hero3__lead {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
body .bm-mag-intro {
  margin: 0;
  padding: 0;
  text-align: left;
}
body .bm-mag-intro__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mh-muted, #6b6470);
  margin-bottom: 0.85rem;
}
body .bm-mag-intro__title {
  font-family: "Bricolage Grotesque", var(--mh-font-heading, Georgia, serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--mh-plum, #1a1320);
  margin: 0 0 0.85rem;
  max-width: 28ch;
}
body .bm-mag-intro__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mh-plum-soft, #6b6470);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}
body .bm-mag-intro__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--mh-line, #eeecf3);
}
body .bm-mag-intro__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #FCFBFC;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-plum, #1a1320);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
body .bm-mag-intro__cat:hover {
  background: var(--mh-rose, #fdeef5);
  color: var(--mh-primary-deep, #c81e74);
  text-decoration: none;
}
body .bm-mag-intro__cat.is-active {
  background: var(--mh-ink, #1a1320);
  color: #fff;
}
@media (max-width: 768px) {
  body .bm-mag-intro { padding: 1.5rem 1rem 0; margin-bottom: 1.75rem; }
  body .bm-mag-intro__title { font-size: 1.6rem; }
  body .bm-mag-intro__lede { font-size: 14px; }
  body .bm-mag-intro__cat { padding: 0.4rem 0.8rem; font-size: 12.5px; }
}
