﻿.mvhm-shell,
.mvhm-shell * {
  box-sizing: border-box;
}

.mvhm-shell {
  color: var(--mvhm-text, #061f43);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  width: 100vw;
  --mvhm-ink-blue: var(--mvhm-text, #061f43);
  --mvhm-ink-blue-dark: #031533;
  --mvhm-ink-blue-soft: rgba(6, 31, 67, 0.1);
  --mvhm-brand-blue: var(--mvhm-accent, #0057d8);
  --mvhm-brand-yellow: #ffb800;
  z-index: 120;
}

.mvhm-shell a {
  color: inherit;
  text-decoration: none;
}

.mvhm-shell svg {
  display: block;
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 1em;
}

.mvhm-ticker {
  align-items: center;
  background: var(--mvhm-ticker-bg, #283158);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 3px solid #061f43;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0 18px;
  position: relative;
  width: 100%;
}

.mvhm-ticker__track {
  align-items: center;
  display: grid;
  flex: 1 1 auto;
  max-width: 1360px;
  min-height: 44px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mvhm-ticker__item {
  color: #fff;
  grid-area: 1 / 1;
  justify-self: center;
  max-width: min(1120px, 100%);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  text-align: center;
  text-overflow: ellipsis;
  transform: translateX(54px);
  white-space: nowrap;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.18;
  padding: 0 18px;
  text-transform: uppercase;
}

.mvhm-ticker__item.is-active {
  animation: mvhmTickerItem 4.4s ease both;
}

.mvhm-ticker.is-static .mvhm-ticker__item.is-active,
.mvhm-ticker__item:first-child:last-child {
  animation: none;
  opacity: 1;
  transform: translateX(0);
}

.mvhm-ticker__item strong,
.mvhm-ticker__item b {
  color: #fff;
  font-weight: 950;
}

.mvhm-ticker__item u {
  color: #fff;
  font-weight: 950;
  text-decoration-color: rgba(255, 255, 255, 0.92);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@keyframes mvhmTickerItem {
  0% {
    opacity: 0;
    transform: translateX(54px);
  }
  16%,
  82% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-54px);
  }
}

.mvhm-main {
  background: var(--mvhm-header-bg, #fff);
  border-bottom: 1px solid rgba(6, 31, 67, 0.12);
  color: var(--mvhm-ink-blue);
}

.mvhm-main__inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(285px, 390px) minmax(380px, 1fr) auto;
  margin: 0 auto;
  max-width: 1440px;
  padding: 16px 28px;
}

.mvhm-mobile-menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--mvhm-ink-blue);
  cursor: pointer;
  display: none;
  justify-content: center;
  min-height: 44px;
  padding: 0;
}

.mvhm-mobile-menu-button svg {
  font-size: 34px;
  stroke-width: 2.7;
}

.mvhm-logo {
  align-items: center;
  display: inline-flex;
  background: #fff;
  border-radius: 8px;
  height: 112px;
  justify-content: flex-start;
  min-width: 0;
  overflow: visible;
  padding: 6px 0;
}

.mvhm-logo img {
  display: block;
  max-height: 104px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  width: clamp(280px, 19vw, 380px);
}

.mvhm-logo span {
  color: var(--mvhm-ink-blue);
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.mvhm-search {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(6, 31, 67, 0.26);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(6, 31, 67, 0.08);
  color: var(--mvhm-ink-blue);
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  min-height: 62px;
  overflow: hidden;
}

.mvhm-search:focus-within {
  border-color: var(--mvhm-accent, #061f43);
  box-shadow: 0 0 0 4px rgba(6, 31, 67, 0.14), 0 8px 22px rgba(6, 31, 67, 0.1);
}

.mvhm-search__icon,
.mvhm-search__voice {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.mvhm-search__icon {
  color: var(--mvhm-accent, #061f43);
  font-size: 26px;
  opacity: 0.98;
}

.mvhm-search__input {
  appearance: none;
  border: 0;
  color: var(--mvhm-ink-blue);
  font-size: 19px;
  font-weight: 850;
  min-width: 0;
  outline: 0;
  padding: 0;
  width: 100%;
}

.mvhm-search__input::placeholder {
  color: rgba(6, 31, 67, 0.74);
  opacity: 1;
}

.mvhm-search__voice {
  background: transparent;
  border: 0;
  color: var(--mvhm-accent, #061f43);
  cursor: pointer;
  font-size: 25px;
  height: 100%;
  padding: 0;
}

.mvhm-search__voice:hover,
.mvhm-search__voice:focus-visible {
  color: var(--mvhm-ink-blue-dark);
  outline: 0;
}

.mvhm-search__voice[disabled] {
  cursor: default;
  opacity: 0.38;
}

.mvhm-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  min-width: max-content;
}

.mvhm-action {
  align-items: center;
  color: var(--mvhm-ink-blue);
  display: inline-flex;
  font-weight: 900;
  gap: 12px;
  line-height: 1;
  min-height: 54px;
  position: relative;
}

.mvhm-action:hover,
.mvhm-action:focus-visible {
  color: var(--mvhm-ink-blue-dark);
  opacity: 1;
}

.mvhm-action svg {
  font-size: 39px;
  stroke-width: 2.8;
}

.mvhm-action--account span {
  color: var(--mvhm-ink-blue);
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.mvhm-action--account:hover span,
.mvhm-action--account:focus-visible span {
  color: var(--mvhm-ink-blue-dark);
}

.mvhm-action--cart {
  font-size: 40px;
  justify-content: center;
  min-width: 60px;
}

.mvhm-cart-count {
  align-items: center;
  background: var(--mvhm-accent, #061f43);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  min-width: 20px;
  padding: 0 5px;
  position: absolute;
  right: -8px;
  top: 0;
}

.mvhm-nav {
  background: #fff;
  border-bottom: 1px solid rgba(6, 31, 67, 0.1);
  color: var(--mvhm-ink-blue);
  position: relative;
  z-index: 90;
}

.mvhm-nav__categories {
  background: var(--mvhm-nav-bg, #f1f7ff);
  border-bottom: 1px solid rgba(6, 31, 67, 0.1);
  position: relative;
  z-index: 3;
}

.mvhm-nav__inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 28px;
}

.mvhm-nav__inner--categories {
  min-height: 66px;
}

.mvhm-nav__toggle {
  display: none;
}

.mvhm-nav__list {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
  white-space: nowrap;
}

.mvhm-nav__list::-webkit-scrollbar {
  display: none;
}

.mvhm-nav__item {
  position: static;
}

.mvhm-nav__tools {
  background: #fff;
  border-bottom: 1px solid rgba(6, 31, 67, 0.08);
  box-shadow: 0 8px 18px rgba(6, 31, 67, 0.04);
  position: relative;
  z-index: 1;
}

.mvhm-nav__tools-inner,
.mvhm-nav__utilities {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 58px;
  overflow: visible;
  padding: 0 28px;
  scrollbar-width: none;
  white-space: nowrap;
}

.mvhm-nav__tools-inner::-webkit-scrollbar,
.mvhm-nav__utilities::-webkit-scrollbar {
  display: none;
}

.mvhm-utility-item {
  flex: 0 0 auto;
  position: relative;
}

.mvhm-utility-item--quote {
  margin-right: 6px;
}

.mvhm-utility-link {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #061f43;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  gap: 6px;
  min-height: 58px;
  padding: 0 2px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.mvhm-utility-link:hover,
.mvhm-utility-link:focus-visible {
  color: var(--mvhm-brand-blue);
  outline: 0;
}

.mvhm-utility-link:not(.mvhm-utility-link--quote)::before {
  background: var(--mvhm-brand-blue);
  border-radius: 999px;
  bottom: 12px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mvhm-utility-link:not(.mvhm-utility-link--quote):hover::before,
.mvhm-utility-link:not(.mvhm-utility-link--quote):focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.mvhm-utility-link--quote {
  background: var(--mvhm-brand-yellow);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.28);
  color: #061f43;
  font-size: 16px;
  min-height: 44px;
  padding: 0 30px;
}

.mvhm-utility-link--quote:hover,
.mvhm-utility-link--quote:focus-visible {
  background: #0057d8;
  color: #fff;
}

.mvhm-utility-link--whatsapp {
  color: #128c4a;
}

.mvhm-utility-chevron {
  font-size: 0.84rem;
  transition: transform 160ms ease;
}

.mvhm-utility-item:hover .mvhm-utility-chevron,
.mvhm-utility-item:focus-within .mvhm-utility-chevron,
.mvhm-utility-item.is-open .mvhm-utility-chevron {
  transform: rotate(180deg);
}

.mvhm-utility-panel {
  background: #fff;
  border: 1px solid rgba(6, 31, 67, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(6, 31, 67, 0.16);
  display: none;
  gap: 2px;
  left: 50%;
  min-width: 244px;
  padding: 8px;
  position: absolute;
  top: calc(100% - 4px);
  transform: translateX(-50%);
  white-space: normal;
  z-index: 80;
}

.mvhm-utility-item:hover > .mvhm-utility-panel,
.mvhm-utility-item:focus-within > .mvhm-utility-panel,
.mvhm-utility-item.is-open > .mvhm-utility-panel {
  display: grid;
}

.mvhm-utility-panel__link {
  border-radius: 7px;
  color: #061f43;
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  padding: 11px 12px;
}

.mvhm-utility-panel__link:hover,
.mvhm-utility-panel__link:focus-visible {
  background: rgba(0, 87, 216, 0.08);
  color: var(--mvhm-brand-blue);
  outline: 0;
}

.mvhm-nav__link {
  align-items: center;
  color: #061f43;
  display: inline-flex;
  font-size: 17px;
  font-weight: 950;
  gap: 7px;
  min-height: 66px;
  padding: 0 18px;
  position: relative;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.mvhm-nav__link:hover,
.mvhm-nav__link:focus-visible,
.mvhm-nav__item.is-open > .mvhm-nav__link {
  background: rgba(0, 87, 216, 0.08);
  color: var(--mvhm-brand-blue);
  outline: 0;
}

.mvhm-nav__link::after {
  background: var(--mvhm-brand-blue);
  bottom: 0;
  content: "";
  height: 3px;
  left: 18px;
  opacity: 0;
  position: absolute;
  right: 18px;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mvhm-nav__link:hover::after,
.mvhm-nav__link:focus-visible::after,
.mvhm-nav__item.is-open > .mvhm-nav__link::after {
  opacity: 1;
  transform: scaleX(1);
}

.mvhm-nav__item--offer > .mvhm-nav__link {
  color: #d78a00;
}

.mvhm-nav__item--highlight > .mvhm-nav__link {
  color: var(--mvhm-brand-blue);
}

.mvhm-nav__chevron {
  font-size: 0.82rem;
  transition: transform 160ms ease;
}

.mvhm-nav__item:hover .mvhm-nav__chevron,
.mvhm-nav__item.is-open .mvhm-nav__chevron {
  transform: rotate(180deg);
}

.mvhm-mega {
  background: var(--mvhm-mega-bg, #fff);
  border-bottom: 1px solid rgba(6, 31, 67, 0.1);
  box-shadow: 0 24px 42px rgba(6, 31, 67, 0.14);
  color: var(--mvhm-text, #061f43);
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 30;
}

.mvhm-nav__item:hover > .mvhm-mega,
.mvhm-nav__item:focus-within > .mvhm-mega,
.mvhm-nav__item.is-open > .mvhm-mega {
  display: block;
}

.mvhm-mega__inner {
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 28px 30px;
}

.mvhm-mega__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: start;
}

.mvhm-mega-card {
  background: #fff;
  border: 1px solid rgba(6, 31, 67, 0.12);
  border-radius: 10px;
  min-height: 100%;
  min-width: 0;
  padding: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mvhm-mega-card:hover,
.mvhm-mega-card:focus-within {
  border-color: rgba(0, 87, 216, 0.28);
  box-shadow: 0 12px 24px rgba(6, 31, 67, 0.1);
  transform: translateY(-1px);
}

.mvhm-mega-card__image {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #f7fbff;
  border: 1px solid rgba(6, 31, 67, 0.08);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.mvhm-mega-card__image img {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.mvhm-mega-card__image:hover img,
.mvhm-mega-card__image:focus-visible img {
  transform: scale(1.04);
}

.mvhm-mega-card__title {
  border-bottom: 1px solid rgba(6, 31, 67, 0.14);
  color: var(--mvhm-text, #061f43);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.22;
  margin: 12px 0 8px;
  min-height: 42px;
  padding-bottom: 8px;
}

.mvhm-mega-card__title a:hover,
.mvhm-mega-card__title a:focus-visible,
.mvhm-mega-card__links a:hover,
.mvhm-mega-card__links a:focus-visible {
  color: var(--mvhm-accent, #0057d8);
  outline: 0;
}

.mvhm-mega-card__links {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mvhm-mega-card__links a {
  color: rgba(6, 31, 67, 0.78);
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.mvhm-page {
  color: #283158;
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 18px 54px;
}

.mvhm-page__hero {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 360px);
}

.mvhm-page__hero img {
  background: #fff;
  border: 1px solid rgba(40, 49, 88, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(40, 49, 88, 0.08);
  display: block;
  width: 100%;
}

.mvhm-page__eyebrow {
  color: #283158;
  display: block;
  font-size: 0.84rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mvhm-page h1 {
  color: #283158;
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.04;
  margin: 0 0 14px;
}

.mvhm-page p {
  color: rgba(40, 49, 88, 0.72);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.mvhm-calculator {
  background: #fff;
  border: 1px solid rgba(40, 49, 88, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(40, 49, 88, 0.08);
  padding: 22px;
}

.mvhm-calculator__fields {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mvhm-calculator label {
  display: grid;
  gap: 7px;
}

.mvhm-calculator label span {
  color: #283158;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mvhm-calculator input,
.mvhm-calculator select {
  border: 1px solid rgba(40, 49, 88, 0.18);
  border-radius: 6px;
  color: #283158;
  font-size: 16px;
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.mvhm-calculator input:focus,
.mvhm-calculator select:focus {
  border-color: #283158;
  box-shadow: 0 0 0 3px rgba(40, 49, 88, 0.12);
  outline: 0;
}

.mvhm-calculator small {
  color: rgba(40, 49, 88, 0.58);
  font-size: 0.82rem;
}

.mvhm-calculator__result {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.mvhm-calculator__result div {
  background: #f3f8ff;
  border-radius: 8px;
  padding: 16px;
}

.mvhm-calculator__result span {
  color: rgba(40, 49, 88, 0.7);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.mvhm-calculator__result strong {
  color: #283158;
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
}

.mvhm-calculator__note {
  font-size: 0.88rem;
  margin-top: 16px;
}

.mvhm-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mvhm-page-button {
  align-items: center;
  border: 1px solid rgba(40, 49, 88, 0.3);
  border-radius: 999px;
  color: #283158;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 900;
  min-height: 42px;
  padding: 0 16px;
}

.mvhm-page-button:hover,
.mvhm-page-button:focus-visible {
  background: #283158;
  color: #fff;
  outline: 0;
}

.mvhm-page-button--primary {
  background: #283158;
  color: #fff;
}

.mvhm-page-button--primary:hover,
.mvhm-page-button--primary:focus-visible {
  background: #003b9f;
}

.mvhm-club-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mvhm-club-grid article {
  background: #fff;
  border: 1px solid rgba(40, 49, 88, 0.1);
  border-radius: 8px;
  padding: 22px;
}

.mvhm-club-grid span {
  color: #283158;
  font-size: 15px;
  font-weight: 900;
}

.mvhm-club-grid h2 {
  color: #283158;
  font-size: 18px;
  font-weight: 900;
  margin: 10px 0 8px;
}

@media (max-width: 1120px) {
  .mvhm-main__inner {
    grid-template-columns: minmax(230px, 1fr) auto;
  }

  .mvhm-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mvhm-nav__link {
    font-size: 15px;
    min-height: 58px;
    padding: 0 13px;
  }

  .mvhm-nav__inner--categories {
    min-height: 58px;
  }

  .mvhm-nav__tools-inner,
  .mvhm-nav__utilities {
    gap: 16px;
    justify-content: flex-start;
    min-height: 54px;
    overflow-x: auto;
    overflow-y: visible;
  }

  .mvhm-utility-link {
    font-size: 14px;
    min-height: 54px;
  }

  .mvhm-utility-link--quote {
    min-height: 40px;
    padding: 0 24px;
  }
}

@media (max-width: 900px) {
  body:has(.mvhm-shell--menu) #header > .header-top,
  body:has(.mvhm-shell--menu) #header > .header-nav,
  body:has(.mvhm-shell--menu) header#header > .header-top,
  body:has(.mvhm-shell--menu) header#header > .header-nav,
  body:has(.mvhm-shell--menu) header#header > .mobile-header,
  body:has(.mvhm-shell--menu) header#header > .header-mobile,
  body:has(.mvhm-shell--menu) header#header > .mobile-header-wrapper,
  body:has(.mvhm-shell--menu) header#header > .mobile-header-row {
    display: none !important;
  }

  .mvhm-ticker {
    border-top-width: 0;
    min-height: 42px;
    padding: 0 16px;
  }

  .mvhm-ticker__item {
    font-size: 14px;
    line-height: 1.25;
    max-width: 100%;
    padding: 0;
    white-space: normal;
  }

  .mvhm-main__inner {
    gap: 10px 14px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas:
      "menu logo actions"
      "search search search";
    max-width: none;
    padding: 10px 16px 16px;
  }

  .mvhm-mobile-menu-button {
    align-self: center;
    display: inline-flex;
    grid-area: menu;
  }

  .mvhm-logo {
    grid-area: logo;
    height: 86px;
    justify-content: center;
    justify-self: center;
    min-width: 0;
    width: 100%;
  }

  .mvhm-logo img {
    max-height: 82px;
    max-width: 100%;
    object-position: center;
    width: min(300px, 62vw, 100%);
  }

  .mvhm-logo span {
    font-size: 1.7rem;
  }

  .mvhm-actions {
    align-self: center;
    gap: 10px;
    grid-area: actions;
  }

  .mvhm-action--account span {
    display: none;
  }

  .mvhm-action {
    min-height: 46px;
  }

  .mvhm-action svg {
    font-size: 31px;
  }

  .mvhm-action--cart {
    min-width: 42px;
  }

  .mvhm-cart-count {
    right: -4px;
    top: 2px;
  }

  .mvhm-search {
    border-radius: 14px;
    grid-area: search;
    grid-template-columns: 52px minmax(0, 1fr) 48px;
    min-height: 56px;
  }

  .mvhm-search__icon {
    font-size: 27px;
  }

  .mvhm-search__input {
    font-size: 18px;
  }

  .mvhm-search__voice {
    font-size: 23px;
  }

  .mvhm-nav {
    background: #fff;
    border-bottom: 1px solid rgba(6, 31, 67, 0.12);
    box-shadow: 0 12px 24px rgba(24, 33, 66, 0.08);
    display: block;
  }

  .mvhm-nav__categories {
    background: #fff;
    display: none;
  }

  .mvhm-nav.is-open .mvhm-nav__categories {
    display: block;
  }

  .mvhm-nav__inner--categories {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-width: none;
    min-height: 0;
    padding: 12px 18px 18px;
  }

  .mvhm-nav__toggle {
    align-items: center;
    background: #f1f7ff;
    border: 1px solid rgba(6, 31, 67, 0.14);
    border-radius: 10px;
    color: var(--mvhm-ink-blue);
    display: flex;
    font-size: 15px;
    font-weight: 900;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    text-transform: uppercase;
    width: 100%;
  }

  .mvhm-nav__toggle svg {
    font-size: 19px;
    transition: transform 160ms ease;
  }

  .mvhm-nav.is-open .mvhm-nav__toggle svg {
    transform: rotate(180deg);
  }

  .mvhm-nav__list {
    align-items: stretch;
    border-top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: visible;
    padding: 10px 0 12px;
    white-space: normal;
  }

  .mvhm-nav__item {
    position: relative;
  }

  .mvhm-nav__link {
    background: #fff;
    border-bottom: 1px solid rgba(6, 31, 67, 0.1);
    justify-content: space-between;
    font-size: 17px;
    min-height: 52px;
    padding: 0 4px;
    width: 100%;
  }

  .mvhm-nav__link::after {
    display: none;
  }

  .mvhm-nav__item:hover > .mvhm-mega,
  .mvhm-nav__item:focus-within > .mvhm-mega {
    display: none;
  }

  .mvhm-nav__item.is-open > .mvhm-mega {
    display: block;
  }

  .mvhm-mega {
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    margin: 0;
    position: static;
    width: auto;
  }

  .mvhm-mega__inner {
    padding: 12px 0 18px;
  }

  .mvhm-mega__grid {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr);
  }

  .mvhm-mega-card {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 116px;
    padding: 10px;
  }

  .mvhm-mega-card__image {
    border: 0;
    grid-row: span 2;
    min-height: 94px;
    padding: 0;
  }

  .mvhm-mega-card__title {
    align-self: end;
    border-bottom: 1px solid rgba(6, 31, 67, 0.12);
    font-size: 18px;
    margin: 0;
    min-height: auto;
  }

  .mvhm-mega-card__links {
    align-self: start;
    gap: 3px;
  }

  .mvhm-mega-card__links a {
    font-size: 13px;
  }

  .mvhm-nav__tools {
    border-bottom: 1px solid rgba(6, 31, 67, 0.1);
    box-shadow: none;
    background: #f7fbff;
  }

  .mvhm-nav__tools-inner,
  .mvhm-nav__utilities {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    min-height: 0;
    overflow: visible;
    padding: 10px 12px;
    scrollbar-width: none;
  }

  .mvhm-nav__tools-inner::-webkit-scrollbar,
  .mvhm-nav__utilities::-webkit-scrollbar {
    display: none;
  }

  .mvhm-utility-link {
    background: #fff;
    border: 1px solid rgba(6, 31, 67, 0.12);
    border-radius: 10px;
    font-size: 13px;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    width: 100%;
  }

  .mvhm-utility-link:not(.mvhm-utility-link--quote)::before {
    display: none;
  }

  .mvhm-utility-link--quote {
    border-color: var(--mvhm-brand-yellow);
    box-shadow: 0 8px 16px rgba(255, 184, 0, 0.2);
    font-size: 15px;
    min-height: 44px;
    padding: 0 14px;
  }

  .mvhm-utility-item--quote,
  .mvhm-utility-item--materials,
  .mvhm-utility-item--solutions,
  .mvhm-utility-item--services {
    grid-column: 1 / -1;
    margin-right: 0;
  }

  .mvhm-utility-item--has-panel.is-open > .mvhm-utility-link,
  .mvhm-utility-item--has-panel:focus-within > .mvhm-utility-link {
    background: #f1f7ff;
    border-color: rgba(0, 87, 216, 0.26);
    color: var(--mvhm-brand-blue);
  }

  .mvhm-utility-panel {
    border-radius: 10px;
    box-shadow: none;
    left: auto;
    margin-top: 8px;
    min-width: 0;
    padding: 8px;
    position: static;
    transform: none;
    width: 100%;
  }

  .mvhm-utility-panel__link {
    font-size: 14px;
    min-height: 42px;
    padding: 12px;
  }

  .mvhm-page {
    padding: 22px 16px 42px;
  }

  .mvhm-page h1 {
    font-size: 2.1rem;
  }

  .mvhm-page__hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .mvhm-page__hero img {
    max-width: 320px;
  }

  .mvhm-calculator {
    padding: 16px;
  }

  .mvhm-calculator__fields,
  .mvhm-calculator__result,
  .mvhm-club-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mvhm-calculator__result strong {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .mvhm-main__inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mvhm-logo {
    height: 86px;
  }

  .mvhm-logo img {
    max-height: 82px;
    max-width: 100%;
    width: min(246px, 58vw, 100%);
  }

  .mvhm-mobile-menu-button svg,
  .mvhm-action svg {
    font-size: 32px;
  }

  .mvhm-mega-card {
    gap: 0 14px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .mvhm-mega-card__image {
    grid-row: span 2;
  }

  .mvhm-mega-card__title {
    align-self: start;
    margin: 0 0 8px;
  }

  .mvhm-mega-card__links {
    gap: 7px;
  }
}

.mvhm-drawer-overlay,
.mvhm-drawer {
  display: none;
}

@media (max-width: 900px) {
  body.mvhm-drawer-lock {
    overflow: hidden;
    touch-action: none;
  }

  .mvhm-shell {
    --mvhm-ink-blue: #071b3d;
    --mvhm-ink-blue-dark: #071b3d;
    --mvhm-brand-blue: #102b5d;
    --mvhm-brand-yellow: #f6b400;
    --mvhm-surface-soft: #f5f7fb;
    --mvhm-border-soft: #e7edf6;
    z-index: 500;
  }

  .mvhm-ticker {
    background: #102b5d;
    border: 0;
    min-height: 32px;
    padding: 0 12px;
  }

  .mvhm-ticker__track {
    min-height: 32px;
  }

  .mvhm-ticker__item {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    max-width: 100%;
    padding: 0 4px;
    text-transform: uppercase;
    white-space: normal;
  }

  .mvhm-main {
    background: #fff;
    border-bottom: 1px solid var(--mvhm-border-soft);
  }

  .mvhm-main__inner {
    gap: 7px 10px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas:
      "menu logo actions"
      "search search search";
    max-width: none;
    min-height: 116px;
    padding: 6px 12px 8px;
  }

  .mvhm-mobile-menu-button {
    color: #071b3d;
    min-height: 44px;
    width: 44px;
  }

  .mvhm-mobile-menu-button svg {
    font-size: 31px;
    stroke-width: 2.8;
  }

  .mvhm-logo {
    background: transparent;
    height: 58px;
    padding: 0;
  }

  .mvhm-logo img {
    max-height: 52px;
    width: min(252px, 57vw, 100%);
  }

  .mvhm-actions {
    gap: 7px;
  }

  .mvhm-action {
    color: #071b3d;
    min-height: 44px;
    min-width: 38px;
  }

  .mvhm-action svg {
    font-size: 30px;
    stroke-width: 2.8;
  }

  .mvhm-action--cart {
    min-width: 39px;
  }

  .mvhm-cart-count {
    background: #102b5d;
    font-size: 10px;
    height: 17px;
    min-width: 17px;
    right: -2px;
    top: 3px;
  }

  .mvhm-search {
    border-color: #cfd9ea;
    border-radius: 999px;
    box-shadow: none;
    grid-template-columns: 44px minmax(0, 1fr) 42px;
    min-height: 42px;
  }

  .mvhm-search:focus-within {
    border-color: #102b5d;
    box-shadow: 0 0 0 3px rgba(16, 43, 93, 0.12);
  }

  .mvhm-search__icon {
    color: #0057d8;
    font-size: 22px;
  }

  .mvhm-search__input {
    color: #071b3d;
    font-size: 14px;
    font-weight: 850;
  }

  .mvhm-search__input::placeholder {
    color: rgba(7, 27, 61, 0.68);
  }

  .mvhm-search__voice {
    color: #0057d8;
    font-size: 21px;
  }

  .mvhm-nav {
    background: #fff;
    box-shadow: 0 8px 18px rgba(7, 27, 61, 0.06);
  }

  .mvhm-nav .mvhm-nav__categories,
  .mvhm-nav.is-open .mvhm-nav__categories {
    display: none !important;
  }

  .mvhm-nav__tools {
    background: #fff;
    border-bottom: 1px solid var(--mvhm-border-soft);
    box-shadow: none;
  }

  .mvhm-nav__tools-inner,
  .mvhm-nav__utilities {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    min-height: 48px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 12px;
    scroll-padding: 12px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .mvhm-utility-item,
  .mvhm-utility-item--quote,
  .mvhm-utility-item--materials,
  .mvhm-utility-item--solutions,
  .mvhm-utility-item--services {
    flex: 0 0 auto;
    grid-column: auto;
    margin: 0;
  }

  .mvhm-utility-link {
    background: #f5f7fb;
    border: 1px solid #d9e3f2;
    border-radius: 999px;
    color: #102b5d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    min-height: 36px;
    padding: 0 13px;
    text-transform: none;
    width: auto;
  }

  .mvhm-utility-link:not(.mvhm-utility-link--quote)::before,
  .mvhm-utility-chevron {
    display: none;
  }

  .mvhm-utility-link--quote {
    background: #f6b400;
    border-color: #f6b400;
    box-shadow: 0 8px 16px rgba(246, 180, 0, 0.22);
    color: #071b3d;
    font-size: 13px;
    min-height: 36px;
    padding: 0 18px;
  }

  .mvhm-utility-link--whatsapp {
    background: #eafaf1;
    border-color: rgba(37, 211, 102, 0.35);
    color: #128c4a;
  }

  .mvhm-utility-panel,
  .mvhm-utility-item:hover > .mvhm-utility-panel,
  .mvhm-utility-item:focus-within > .mvhm-utility-panel,
  .mvhm-utility-item.is-open > .mvhm-utility-panel {
    display: none;
  }

  .mvhm-drawer-overlay {
    background: rgba(7, 27, 61, 0.46);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 180ms ease;
    z-index: 980;
  }

  .mvhm-shell.is-drawer-open .mvhm-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .mvhm-drawer {
    background: #fff;
    bottom: 0;
    box-shadow: 18px 0 44px rgba(7, 27, 61, 0.24);
    color: #071b3d;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    left: 0;
    max-width: min(88vw, 380px);
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    width: 100%;
    z-index: 990;
  }

  .mvhm-shell.is-drawer-open .mvhm-drawer {
    transform: translateX(0);
  }

  .mvhm-drawer__header {
    align-items: center;
    background: #102b5d;
    color: #fff;
    display: flex;
    font-size: 17px;
    font-weight: 950;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 16px;
  }

  .mvhm-drawer__close {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
  }

  .mvhm-drawer__close svg {
    font-size: 22px;
  }

  .mvhm-drawer__body {
    background: #f5f7fb;
    overflow-y: auto;
    padding: 12px;
  }

  .mvhm-drawer-group {
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .mvhm-drawer-group__toggle {
    align-items: center;
    appearance: none;
    background: #fff;
    border: 0;
    color: #071b3d;
    display: flex;
    font: inherit;
    font-size: 15px;
    font-weight: 950;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    text-align: left;
    width: 100%;
  }

  .mvhm-drawer-group__toggle svg {
    color: #102b5d;
    font-size: 17px;
    transition: transform 160ms ease;
  }

  .mvhm-drawer-group.is-open .mvhm-drawer-group__toggle svg {
    transform: rotate(180deg);
  }

  .mvhm-drawer-group__panel {
    border-top: 1px solid #e7edf6;
    display: none;
    padding: 6px;
  }

  .mvhm-drawer-group.is-open .mvhm-drawer-group__panel {
    display: grid;
    gap: 2px;
  }

  .mvhm-drawer-link {
    align-items: center;
    border-radius: 9px;
    color: #102b5d;
    display: flex;
    font-size: 14px;
    font-weight: 800;
    min-height: 44px;
    padding: 10px 12px;
  }

  .mvhm-drawer-link:hover,
  .mvhm-drawer-link:focus-visible {
    background: #eef5ff;
    color: #0057d8;
    outline: 0;
  }

  .mvhm-drawer__footer {
    background: #fff;
    border-top: 1px solid #e7edf6;
    display: grid;
    gap: 8px;
    padding: 12px;
  }

  .mvhm-drawer-cta {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
  }

  .mvhm-drawer-cta--whatsapp {
    background: #25d366;
    color: #071b3d;
  }

  .mvhm-drawer-cta--secondary {
    background: #f5f7fb;
    border: 1px solid #d9e3f2;
    color: #102b5d;
  }
}

@media (max-width: 390px) {
  .mvhm-logo img {
    width: min(218px, 54vw, 100%);
  }

  .mvhm-main__inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mvhm-nav__tools-inner,
  .mvhm-nav__utilities {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mvhm-ticker__item,
  .mvhm-mega-card__image img,
  .mvhm-nav__chevron,
  .mvhm-nav__toggle svg,
  .mvhm-drawer,
  .mvhm-drawer-overlay,
  .mvhm-drawer-group__toggle svg {
    animation: none;
    transition: none;
  }

  .mvhm-ticker__item.is-active {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MV Home Menu 1.1.13: stable desktop hover, brand-blue links and WhatsApp treatment. */
.mvhm-shell {
  --mvhm-brand-dark: #071b3d;
  --mvhm-brand-blue: #102b5d;
  --mvhm-brand-soft: #eef5ff;
  --mvhm-brand-yellow: #f6b400;
  --mvhm-brand-yellow-hover: #e5a500;
  --mvhm-whatsapp: #25d366;
  --mvhm-surface: #f5f7fb;
  --mvhm-border: #e7edf6;
  --mvhm-muted: #667085;
  color: var(--mvhm-brand-blue);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  isolation: isolate;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  z-index: 940;
}

.mvhm-shell :where(a, button, input):focus-visible {
  outline: 3px solid rgba(16, 43, 93, 0.28);
  outline-offset: 3px;
}

.mvhm-ticker {
  background: var(--mvhm-ticker-bg, var(--mvhm-brand-blue));
  border: 0;
  min-height: 32px;
  padding: 0 18px;
  transition: max-height 180ms ease, min-height 180ms ease, opacity 140ms ease;
}

.mvhm-ticker__track {
  min-height: 32px;
}

.mvhm-ticker__item {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0 16px;
  text-transform: none;
}

.mvhm-ticker__item strong,
.mvhm-ticker__item b,
.mvhm-ticker__item u {
  font-weight: 900;
}

.mvhm-main {
  background: var(--mvhm-header-bg, #fff);
  border-bottom: 1px solid var(--mvhm-border);
}

.mvhm-main__inner {
  gap: 28px;
  grid-template-columns: minmax(250px, 310px) minmax(420px, 1fr) auto;
  max-width: 1400px;
  min-height: 92px;
  padding: 10px 24px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.mvhm-logo {
  background: transparent;
  border-radius: 0;
  height: 72px;
  padding: 0;
  transition: height 180ms ease;
}

.mvhm-logo img {
  max-height: 64px;
  max-width: 100%;
  object-position: left center;
  width: min(300px, 100%);
  transition: max-height 180ms ease, width 180ms ease;
}

.mvhm-search {
  border: 1px solid #cbd7e8;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(7, 27, 61, 0.07);
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  min-height: 56px;
  transition: min-height 180ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mvhm-search:focus-within {
  border-color: var(--mvhm-brand-blue);
  box-shadow: 0 0 0 4px rgba(16, 43, 93, 0.1), 0 10px 26px rgba(7, 27, 61, 0.09);
}

.mvhm-search__icon,
.mvhm-search__voice {
  color: var(--mvhm-brand-blue);
  font-size: 23px;
}

.mvhm-search__input {
  color: var(--mvhm-brand-dark);
  font-size: 16px;
  font-weight: 700;
}

.mvhm-search__input::placeholder {
  color: #455b7d;
  font-weight: 650;
}

.mvhm-actions {
  gap: 14px;
}

.mvhm-action {
  color: var(--mvhm-brand-dark);
  gap: 9px;
  min-height: 48px;
}

.mvhm-action svg,
.mvhm-action--cart {
  font-size: 32px;
}

.mvhm-action--account span {
  color: var(--mvhm-brand-dark);
  font-size: 15px;
  font-weight: 850;
}

.mvhm-action:hover,
.mvhm-action:focus-visible,
.mvhm-action--account:hover span,
.mvhm-action--account:focus-visible span {
  color: var(--mvhm-brand-blue);
}

.mvhm-cart-count {
  background: var(--mvhm-brand-blue);
  right: -5px;
  top: 1px;
}

.mvhm-nav {
  background: var(--mvhm-nav-bg, var(--mvhm-surface));
  border-bottom: 1px solid #dbe4f0;
  box-shadow: 0 7px 18px rgba(7, 27, 61, 0.045);
  position: relative;
  z-index: 92;
}

.mvhm-nav__desktop {
  background: var(--mvhm-nav-bg, var(--mvhm-surface));
  position: relative;
}

.mvhm-nav__inner--desktop {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  max-width: 1400px;
  min-height: 54px;
  padding: 0 24px;
}

.mvhm-nav__list {
  align-items: stretch;
  display: flex;
  flex: 0 1 auto;
  gap: 2px;
  overflow: visible;
}

.mvhm-nav__item {
  position: static;
}

.mvhm-nav__link {
  border-radius: 7px 7px 0 0;
  color: var(--mvhm-brand-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  min-height: 54px;
  padding: 0 12px;
  text-transform: none;
}

.mvhm-nav__link:hover,
.mvhm-nav__link:focus-visible,
.mvhm-nav__item.is-open > .mvhm-nav__link {
  background: var(--mvhm-brand-soft);
  color: var(--mvhm-brand-blue);
}

.mvhm-nav__link::after {
  background: var(--mvhm-brand-blue);
  border-radius: 999px;
  bottom: 0;
  height: 3px;
  left: 12px;
  right: 12px;
  transform: scaleX(0.4);
}

.mvhm-nav__chevron {
  font-size: 12px;
}

.mvhm-nav__desktop-tools {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
}

.mvhm-utility-item {
  margin: 0;
}

.mvhm-utility-link {
  border-radius: 7px;
  color: var(--mvhm-brand-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  min-height: 54px;
  padding: 0 10px;
  text-transform: none;
}

.mvhm-utility-link:not(.mvhm-utility-link--quote)::before {
  bottom: 0;
  height: 3px;
}

.mvhm-utility-link:hover,
.mvhm-utility-link:focus-visible,
.mvhm-utility-item.is-open > .mvhm-utility-link {
  background: var(--mvhm-brand-soft);
  color: var(--mvhm-brand-blue);
}

.mvhm-utility-link--quote {
  background: var(--mvhm-brand-yellow);
  border: 1px solid var(--mvhm-brand-yellow);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(246, 180, 0, 0.24);
  color: var(--mvhm-brand-dark);
  font-size: 14px;
  min-height: 40px;
  padding: 0 20px;
}

.mvhm-utility-link--quote:hover,
.mvhm-utility-link--quote:focus-visible {
  background: var(--mvhm-brand-yellow-hover);
  border-color: var(--mvhm-brand-yellow-hover);
  color: var(--mvhm-brand-dark);
}

.mvhm-utility-link--whatsapp {
  background: var(--mvhm-whatsapp);
  border: 1px solid var(--mvhm-whatsapp);
  border-radius: 999px;
  color: #fff;
  min-height: 40px;
  padding: 0 16px;
}

.mvhm-utility-link--whatsapp:hover,
.mvhm-utility-link--whatsapp:focus-visible {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

.mvhm-utility-panel {
  border: 1px solid var(--mvhm-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
  min-width: 258px;
  padding: 8px;
  top: calc(100% + 8px);
}

.mvhm-utility-panel__link {
  border-radius: 9px;
  color: var(--mvhm-brand-dark);
  font-size: 14px;
  font-weight: 700;
  min-height: 42px;
  padding: 12px;
}

.mvhm-utility-panel__link:hover,
.mvhm-utility-panel__link:focus-visible {
  background: var(--mvhm-brand-soft);
  color: var(--mvhm-brand-blue);
}

.mvhm-mega {
  background: #fff;
  border: 1px solid var(--mvhm-border);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
  left: 50%;
  max-height: min(640px, calc(100vh - 140px));
  overflow-x: hidden;
  overflow-y: auto;
  right: auto;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: min(1220px, calc(100vw - 32px));
}

.mvhm-mega__inner {
  max-width: none;
  padding: 22px 24px 26px;
}

.mvhm-mega__heading {
  align-items: flex-end;
  border-bottom: 1px solid var(--mvhm-border);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.mvhm-mega__heading strong {
  color: var(--mvhm-brand-dark);
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.mvhm-mega__eyebrow {
  color: var(--mvhm-brand-blue);
  display: block;
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.mvhm-mega__heading > a {
  color: var(--mvhm-brand-blue);
  font-size: 13px;
  font-weight: 850;
}

.mvhm-mega__grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mvhm-mega-card {
  background: #fff;
  border: 1px solid var(--mvhm-border);
  border-radius: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mvhm-mega-card:hover,
.mvhm-mega-card:focus-within {
  border-color: rgba(16, 43, 93, 0.35);
  box-shadow: 0 16px 34px rgba(7, 27, 61, 0.12);
  transform: translateY(-2px);
}

.mvhm-mega-card__image {
  aspect-ratio: 16 / 9;
  background: var(--mvhm-surface);
  border: 0;
  border-radius: 0;
}

.mvhm-mega-card__image img {
  object-fit: cover;
  transition: transform 260ms ease;
}

.mvhm-mega-card:hover .mvhm-mega-card__image img,
.mvhm-mega-card:focus-within .mvhm-mega-card__image img {
  transform: scale(1.035);
}

.mvhm-mega-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
}

.mvhm-mega-card__title {
  border: 0;
  color: var(--mvhm-brand-dark);
  font-size: 17px;
  line-height: 1.24;
  margin: 0 0 7px;
  min-height: 0;
  padding: 0;
}

.mvhm-mega-card__description {
  color: #334e75;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 12px;
}

.mvhm-mega-card__links {
  border-top: 1px solid var(--mvhm-border);
  gap: 0;
  margin: 0 0 12px;
  padding-top: 8px;
}

.mvhm-mega-card__links li:nth-child(n + 5) {
  display: none;
}

.mvhm-mega-card__links a {
  border-radius: 7px;
  color: #244a7c;
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.3;
  padding: 5px 6px;
}

.mvhm-mega-card__links a:hover,
.mvhm-mega-card__links a:focus-visible {
  background: var(--mvhm-brand-soft);
}

.mvhm-mega-card__cta {
  color: var(--mvhm-brand-blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 6px;
  margin-top: auto;
}

.mvhm-nav__tools {
  display: none;
}

.ep-header--scrolled {
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.1);
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 940;
}

.ep-header--scrolled .mvhm-ticker {
  border: 0;
  max-height: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.ep-header--scrolled .mvhm-ticker__track {
  min-height: 0;
}

.ep-header--scrolled .mvhm-main__inner {
  min-height: 62px;
  padding-bottom: 6px;
  padding-top: 6px;
}

.ep-header--scrolled .mvhm-logo {
  height: 48px;
}

.ep-header--scrolled .mvhm-logo img {
  max-height: 44px;
  width: min(220px, 100%);
}

.ep-header--scrolled .mvhm-search {
  min-height: 44px;
}

.ep-header--scrolled .mvhm-nav__inner--desktop,
.ep-header--scrolled .mvhm-nav__link,
.ep-header--scrolled .mvhm-utility-link {
  min-height: 46px;
}

.ep-header--scrolled .mvhm-utility-link--quote,
.ep-header--scrolled .mvhm-utility-link--whatsapp {
  min-height: 36px;
}

.ep-header--scrolled .mvhm-mega {
  max-height: calc(100vh - 124px);
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .mvhm-main__inner {
    gap: 18px;
    grid-template-columns: minmax(210px, 250px) minmax(330px, 1fr) auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .mvhm-logo img {
    width: min(245px, 100%);
  }

  .mvhm-nav__inner--desktop {
    gap: 4px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .mvhm-nav__link,
  .mvhm-utility-link {
    font-size: 12px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .mvhm-utility-link--quote,
  .mvhm-utility-link--whatsapp {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 1024px) {
  body.mvhm-drawer-lock {
    overflow: hidden;
    touch-action: none;
  }

  .mvhm-ticker {
    min-height: 32px;
    padding: 0 10px;
  }

  .mvhm-ticker__track {
    min-height: 32px;
  }

  .mvhm-ticker__item {
    font-size: 11px;
    max-width: 100%;
    padding: 0 8px;
  }

  .mvhm-main__inner {
    column-gap: 10px;
    grid-template-areas:
      "menu logo actions"
      "search search search";
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 126px;
    padding: 8px 12px 10px;
    row-gap: 8px;
  }

  .mvhm-mobile-menu-button {
    color: var(--mvhm-brand-dark);
    display: inline-flex;
    grid-area: menu;
    height: 44px;
    width: 44px;
  }

  .mvhm-mobile-menu-button svg {
    font-size: 28px;
  }

  .mvhm-logo {
    grid-area: logo;
    height: 56px;
    justify-content: center;
    min-width: 0;
  }

  .mvhm-logo img {
    max-height: 52px;
    object-position: center;
    width: min(230px, 58vw, 100%);
  }

  .mvhm-search {
    border-radius: 12px;
    grid-area: search;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 44px;
  }

  .mvhm-search__icon,
  .mvhm-search__voice {
    font-size: 21px;
  }

  .mvhm-search__input {
    font-size: 14px;
    font-weight: 700;
  }

  .mvhm-actions {
    gap: 6px;
    grid-area: actions;
  }

  .mvhm-action {
    height: 44px;
    justify-content: center;
    min-height: 44px;
    min-width: 40px;
  }

  .mvhm-action--account span {
    display: none;
  }

  .mvhm-action svg,
  .mvhm-action--cart {
    font-size: 27px;
  }

  .mvhm-action--cart {
    min-width: 44px;
  }

  .mvhm-cart-count {
    right: -1px;
    top: 0;
  }

  .mvhm-nav__desktop {
    display: none;
  }

  .mvhm-nav__tools {
    background: #fff;
    border-bottom: 1px solid var(--mvhm-border);
    box-shadow: none;
    display: block;
  }

  .mvhm-nav__tools-inner {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    min-height: 52px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 12px;
    scroll-padding: 12px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .mvhm-nav__tools-inner::-webkit-scrollbar {
    display: none;
  }

  .mvhm-mobile-chip {
    align-items: center;
    background: var(--mvhm-surface);
    border: 1px solid #d9e3f2;
    border-radius: 999px;
    color: var(--mvhm-brand-blue);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 850;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
  }

  .mvhm-mobile-chip--quote {
    background: var(--mvhm-brand-yellow);
    border-color: var(--mvhm-brand-yellow);
    color: var(--mvhm-brand-dark);
    padding-left: 18px;
    padding-right: 18px;
  }

  .mvhm-mobile-chip--whatsapp {
    background: var(--mvhm-whatsapp);
    border-color: var(--mvhm-whatsapp);
    color: #fff;
  }

  .ep-header--scrolled .mvhm-main__inner {
    min-height: 108px;
    padding-bottom: 7px;
    padding-top: 7px;
    row-gap: 6px;
  }

  .ep-header--scrolled .mvhm-logo {
    height: 48px;
  }

  .ep-header--scrolled .mvhm-logo img {
    max-height: 44px;
    width: min(205px, 54vw, 100%);
  }

  .ep-header--scrolled .mvhm-search {
    min-height: 42px;
  }

  .ep-header--scrolled .mvhm-nav__tools-inner {
    min-height: 48px;
    padding-bottom: 3px;
    padding-top: 3px;
  }

  .ep-header--scrolled .mvhm-mobile-chip {
    min-height: 40px;
  }

  .mvhm-drawer-overlay {
    background: rgba(7, 27, 61, 0.52);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 180ms ease;
    z-index: 1010;
  }

  .mvhm-shell.is-drawer-open .mvhm-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .mvhm-drawer {
    background: #fff;
    bottom: 0;
    box-shadow: 18px 0 44px rgba(7, 27, 61, 0.24);
    color: var(--mvhm-brand-dark);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    left: 0;
    max-width: min(88vw, 390px);
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    width: 100%;
    z-index: 1020;
  }

  .mvhm-shell.is-drawer-open .mvhm-drawer {
    transform: translateX(0);
  }

  .mvhm-drawer__header {
    background: var(--mvhm-brand-blue);
    min-height: 58px;
  }

  .mvhm-drawer__body {
    background: var(--mvhm-surface);
    padding: 12px;
  }

  .mvhm-drawer-group {
    border-color: var(--mvhm-border);
    border-radius: 12px;
  }

  .mvhm-drawer-group__toggle {
    color: var(--mvhm-brand-dark);
    min-height: 48px;
  }

  .mvhm-drawer-link {
    color: var(--mvhm-brand-blue);
    min-height: 44px;
  }

  .mvhm-drawer-link:hover,
  .mvhm-drawer-link:focus-visible {
    background: var(--mvhm-brand-soft);
    color: var(--mvhm-brand-blue);
  }

  .mvhm-drawer__footer {
    border-color: var(--mvhm-border);
  }

  .mvhm-drawer-cta {
    min-height: 46px;
  }

  .mvhm-drawer-cta--whatsapp {
    background: var(--mvhm-whatsapp);
    color: #fff;
  }

  .mvhm-drawer-cta--secondary {
    background: var(--mvhm-brand-soft);
    border-color: #cfdced;
    color: var(--mvhm-brand-blue);
  }
}

@media (max-width: 420px) {
  .mvhm-main__inner {
    column-gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .mvhm-logo img {
    width: min(205px, 54vw, 100%);
  }

  .mvhm-nav__tools-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ep-header,
  .ep-header *,
  .mvhm-mega-card,
  .mvhm-mega-card__image img {
    scroll-behavior: auto;
    transition: none;
  }
}

/* Warehouse/Iqit loads link-color rules after module assets. Keep menu ink on-brand. */
.mvhm-shell.mvhm-shell--menu .mvhm-nav a.mvhm-nav__link:link,
.mvhm-shell.mvhm-shell--menu .mvhm-nav a.mvhm-nav__link:visited,
.mvhm-shell.mvhm-shell--menu .mvhm-nav a.mvhm-utility-link:link,
.mvhm-shell.mvhm-shell--menu .mvhm-nav a.mvhm-utility-link:visited {
  color: var(--mvhm-brand-blue);
}

.mvhm-shell.mvhm-shell--menu .mvhm-mega .mvhm-mega-card__title a:link,
.mvhm-shell.mvhm-shell--menu .mvhm-mega .mvhm-mega-card__title a:visited {
  color: var(--mvhm-brand-dark);
}

.mvhm-shell.mvhm-shell--menu .mvhm-mega .mvhm-mega-card__links a:link,
.mvhm-shell.mvhm-shell--menu .mvhm-mega .mvhm-mega-card__links a:visited {
  color: #244a7c;
}

.mvhm-shell.mvhm-shell--menu .mvhm-mega a.mvhm-mega-card__cta:link,
.mvhm-shell.mvhm-shell--menu .mvhm-mega a.mvhm-mega-card__cta:visited,
.mvhm-shell.mvhm-shell--menu .mvhm-mega .mvhm-mega__heading > a:link,
.mvhm-shell.mvhm-shell--menu .mvhm-mega .mvhm-mega__heading > a:visited {
  color: #0057d8;
}

.mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip:link,
.mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip:visited,
.mvhm-shell.mvhm-shell--menu a.mvhm-drawer-link:link,
.mvhm-shell.mvhm-shell--menu a.mvhm-drawer-link:visited {
  color: var(--mvhm-brand-blue);
}

/* The theme marks every URL containing "cotizar" as yellow, including WhatsApp text. */
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-utility-link--whatsapp,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip--whatsapp,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-drawer-cta--whatsapp,
.mvhm-shell.mvhm-shell--menu a.mvhm-utility-link--whatsapp,
.mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip--whatsapp,
.mvhm-shell.mvhm-shell--menu a.mvhm-drawer-cta--whatsapp {
  background: var(--mvhm-whatsapp) !important;
  border-color: var(--mvhm-whatsapp) !important;
  color: #fff !important;
}

body #header .mvhm-shell.mvhm-shell--menu a.mvhm-utility-link--whatsapp:hover,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-utility-link--whatsapp:focus-visible,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip--whatsapp:hover,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip--whatsapp:focus-visible,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-drawer-cta--whatsapp:hover,
body #header .mvhm-shell.mvhm-shell--menu a.mvhm-drawer-cta--whatsapp:focus-visible,
.mvhm-shell.mvhm-shell--menu a.mvhm-utility-link--whatsapp:hover,
.mvhm-shell.mvhm-shell--menu a.mvhm-utility-link--whatsapp:focus-visible,
.mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip--whatsapp:hover,
.mvhm-shell.mvhm-shell--menu a.mvhm-mobile-chip--whatsapp:focus-visible,
.mvhm-shell.mvhm-shell--menu a.mvhm-drawer-cta--whatsapp:hover,
.mvhm-shell.mvhm-shell--menu a.mvhm-drawer-cta--whatsapp:focus-visible {
  background: #1ebe5d !important;
  border-color: #1ebe5d !important;
  color: #fff !important;
}


