:root {
  --mk-v2-black: #0a0a0c;
  --mk-v2-graphite: #151518;
  --mk-v2-steel: #26262b;
  --mk-v2-silver: #c8cbd0;
  --mk-v2-white: #f6f6f3;
  --mk-v2-paper: #eeeeeb;
  --mk-v2-ink: #111114;
  --mk-v2-muted: #74747b;
  --mk-v2-line-dark: rgba(255, 255, 255, 0.14);
  --mk-v2-line-light: rgba(17, 17, 20, 0.14);
  --mk-v2-signal: #62d4df;
  --mk-v2-whatsapp: #31c878;
  --mk-v2-danger: #c64b55;
  --mk-v2-radius: 6px;
  --mk-v2-shell: 1480px;
  --mk-v2-header-height: 76px;
  --mk-v2-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

body.mekevo-v2 {
  margin: 0;
  background: var(--mk-v2-paper);
  color: var(--mk-v2-ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.mekevo-v2.mk-v2-panel-open {
  overflow: hidden;
}

body.mekevo-v2 *,
body.mekevo-v2 *::before,
body.mekevo-v2 *::after {
  box-sizing: border-box;
}

body.mekevo-v2 button,
body.mekevo-v2 input {
  font-family: inherit;
  letter-spacing: 0;
}

body.mekevo-v2 button,
body.mekevo-v2 a {
  -webkit-tap-highlight-color: transparent;
}

body.mekevo-v2 [hidden] {
  display: none !important;
}

.mk-v2-shell {
  width: min(var(--mk-v2-shell), calc(100% - 40px));
  margin: 0 auto;
}

.mk-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.mk-v2-kicker {
  display: block;
  color: var(--mk-v2-signal);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.mk-v2-icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--mk-v2-line-dark);
  border-radius: var(--mk-v2-radius);
  background: transparent;
  color: var(--mk-v2-white);
  cursor: pointer;
}

.mk-v2-icon-button:hover,
.mk-v2-icon-button:focus-visible {
  border-color: var(--mk-v2-signal);
  color: var(--mk-v2-signal);
  outline: none;
}

.mk-v2-header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  color: var(--mk-v2-white);
}

.mk-v2-header__bar {
  position: relative;
  border-bottom: 1px solid var(--mk-v2-line-dark);
  background: rgba(10, 10, 12, 0.96);
  backdrop-filter: blur(16px);
}

.mk-v2-header__inner {
  display: grid;
  grid-template-columns: auto minmax(480px, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: var(--mk-v2-header-height);
}

.mk-v2-brand {
  display: inline-flex;
  min-width: 116px;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  color: var(--mk-v2-white);
}

.mk-v2-brand img {
  width: 116px;
  height: 24px;
  object-fit: contain;
  filter: invert(1);
}

.mk-v2-brand span {
  color: var(--mk-v2-silver);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.mk-v2-nav {
  display: flex;
  min-width: 0;
  gap: 4px;
  align-items: center;
}

.mk-v2-nav > a,
.mk-v2-nav__trigger {
  display: inline-flex;
  min-height: 44px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--mk-v2-silver);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.mk-v2-nav__trigger {
  gap: 6px;
}

.mk-v2-nav__trigger .mk-icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
  transition: transform 180ms ease;
}

.mk-v2-nav__trigger[aria-expanded="true"] .mk-icon {
  transform: rotate(180deg);
}

.mk-v2-nav > a:hover,
.mk-v2-nav > a:focus-visible,
.mk-v2-nav__trigger:hover,
.mk-v2-nav__trigger:focus-visible,
.mk-v2-nav__chrome {
  background: rgba(255, 255, 255, 0.07);
  color: var(--mk-v2-white);
  outline: none;
}

.mk-v2-nav__chrome::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mk-v2-signal);
  content: "";
}

.mk-v2-header__tools {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mk-v2-search-inline {
  display: grid;
  width: clamp(190px, 16vw, 270px);
  height: 44px;
  grid-template-columns: 1fr 42px;
  border: 1px solid var(--mk-v2-line-dark);
  border-radius: var(--mk-v2-radius);
  background: rgba(255, 255, 255, 0.06);
}

.mk-v2-search-inline:focus-within {
  border-color: var(--mk-v2-signal);
}

.mk-v2-search-inline input[type="search"] {
  min-width: 0;
  height: 42px;
  padding: 0 4px 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--mk-v2-white);
  font-size: 13px;
}

.mk-v2-search-inline input[type="search"]::placeholder {
  color: #98989e;
}

.mk-v2-search-inline button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--mk-v2-silver);
  cursor: pointer;
}

.mk-v2-search-inline button:hover,
.mk-v2-search-inline button:focus-visible {
  color: var(--mk-v2-signal);
  outline: none;
}

.mk-v2-selection-link,
.mk-v2-wa-button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 0 13px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mk-v2-line-dark);
  border-radius: var(--mk-v2-radius);
  background: transparent;
  color: var(--mk-v2-white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mk-v2-selection-link:hover,
.mk-v2-selection-link:focus-visible {
  border-color: var(--mk-v2-signal);
  color: var(--mk-v2-signal);
  outline: none;
}

.mk-v2-selection-link b,
.mk-v2-mobile-selection b,
.mk-v2-mobile-dock__selection b {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 4px;
  background: var(--mk-v2-signal);
  color: var(--mk-v2-black);
  font-size: 10px;
  line-height: 1;
}

.mk-v2-wa-button {
  border-color: var(--mk-v2-whatsapp);
  background: var(--mk-v2-whatsapp);
  color: #07150d;
}

.mk-v2-wa-button:hover,
.mk-v2-wa-button:focus-visible {
  background: #4ed78f;
  outline: 2px solid rgba(49, 200, 120, 0.3);
  outline-offset: 2px;
}

.mk-v2-menu-trigger,
.mk-v2-mobile-tools,
.mk-v2-mobile-selection {
  display: none;
}

.mk-v2-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 890;
  border-bottom: 1px solid var(--mk-v2-line-dark);
  background: var(--mk-v2-graphite);
  box-shadow: var(--mk-v2-shadow);
}

.mk-v2-mega__inner {
  display: grid;
  min-height: 310px;
  padding-top: 34px;
  padding-bottom: 38px;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.mk-v2-mega__focus {
  padding-right: 36px;
  border-right: 1px solid var(--mk-v2-line-dark);
}

.mk-v2-mega__focus h2 {
  margin: 14px 0 12px;
  color: var(--mk-v2-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.mk-v2-mega__focus p {
  max-width: 300px;
  margin: 0 0 28px;
  color: #a5a5aa;
  font-size: 14px;
  line-height: 1.6;
}

.mk-v2-text-link {
  display: inline-flex;
  min-height: 44px;
  gap: 10px;
  align-items: center;
  color: var(--mk-v2-white);
  font-size: 12px;
  font-weight: 800;
}

.mk-v2-text-link .mk-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.mk-v2-text-link:hover,
.mk-v2-text-link:focus-visible {
  color: var(--mk-v2-signal);
  outline: none;
}

.mk-v2-mega__column h3 {
  margin: 0 0 12px;
  color: var(--mk-v2-white);
  font-size: 12px;
  line-height: 1.4;
}

.mk-v2-mega__column a {
  display: flex;
  min-height: 40px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #aaaab0;
  font-size: 13px;
}

.mk-v2-mega__column a:hover,
.mk-v2-mega__column a:focus-visible {
  color: var(--mk-v2-white);
  outline: none;
}

.mk-v2-mega__column small {
  color: #73737a;
  font-size: 10px;
}

.mk-v2-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.mk-v2-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.64);
}

.mk-v2-drawer__sheet {
  position: relative;
  width: min(86vw, 390px);
  height: 100%;
  padding: max(18px, env(safe-area-inset-top)) 20px calc(30px + env(safe-area-inset-bottom));
  overflow-y: auto;
  background: var(--mk-v2-graphite);
  color: var(--mk-v2-white);
  box-shadow: var(--mk-v2-shadow);
}

.mk-v2-drawer__header {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
}

.mk-v2-drawer__header img {
  width: 122px;
  height: 26px;
  object-fit: contain;
  filter: invert(1);
}

.mk-v2-drawer__nav {
  margin-bottom: 28px;
  border-top: 1px solid var(--mk-v2-line-dark);
}

.mk-v2-drawer__nav a,
.mk-v2-drawer__categories a {
  display: flex;
  min-height: 50px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--mk-v2-line-dark);
  color: var(--mk-v2-white);
  font-size: 14px;
  font-weight: 700;
}

.mk-v2-drawer__nav .mk-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
  color: #77777e;
}

.mk-v2-drawer__categories .mk-v2-kicker {
  margin-bottom: 8px;
}

.mk-v2-drawer__categories a {
  min-height: 46px;
  color: #c3c3c8;
  font-size: 12px;
  font-weight: 600;
}

.mk-v2-drawer__categories small {
  color: #77777e;
  font-size: 10px;
}

.mk-v2-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(10, 10, 12, 0.98);
  color: var(--mk-v2-white);
}

.mk-v2-search-overlay__inner {
  position: relative;
  width: min(780px, 100%);
}

.mk-v2-search-overlay__close {
  position: fixed;
  top: max(20px, env(safe-area-inset-top));
  right: 20px;
}

.mk-v2-search-overlay h2 {
  margin: 16px 0 28px;
  color: var(--mk-v2-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.mk-v2-search-overlay form {
  display: grid;
  height: 62px;
  grid-template-columns: 1fr 60px;
  border-bottom: 1px solid var(--mk-v2-silver);
}

.mk-v2-search-overlay input[type="search"] {
  min-width: 0;
  height: 60px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--mk-v2-white);
  font-size: clamp(18px, 3vw, 26px);
}

.mk-v2-search-overlay input[type="search"]::placeholder {
  color: #6f6f76;
}

.mk-v2-search-overlay form button {
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--mk-v2-signal);
  cursor: pointer;
}

.mk-v2-search-overlay form button .mk-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.mk-v2-footer {
  border-top: 1px solid var(--mk-v2-line-dark);
  background: var(--mk-v2-black);
  color: var(--mk-v2-white);
}

.mk-v2-footer__grid {
  display: grid;
  padding-top: 54px;
  padding-bottom: 54px;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 38px;
}

.mk-v2-footer__brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mk-v2-footer__brand img {
  width: 62px;
  height: 62px;
  border: 1px solid var(--mk-v2-line-dark);
  border-radius: 50%;
  object-fit: cover;
}

.mk-v2-footer__brand strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.mk-v2-footer__brand p {
  margin: 7px 0 0;
  color: #87878e;
  font-size: 12px;
}

.mk-v2-footer h2 {
  margin: 0 0 14px;
  color: #77777e;
  font-size: 10px;
  line-height: 1.4;
}

.mk-v2-footer__nav,
.mk-v2-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mk-v2-footer__nav a,
.mk-v2-footer__contact > a {
  min-height: 34px;
  color: #c1c1c6;
  font-size: 12px;
}

.mk-v2-footer__nav a:hover,
.mk-v2-footer__nav a:focus-visible,
.mk-v2-footer__contact > a:hover,
.mk-v2-footer__contact > a:focus-visible {
  color: var(--mk-v2-white);
  outline: none;
}

.mk-v2-footer__wa {
  display: inline-flex;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 14px;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--mk-v2-whatsapp);
  border-radius: var(--mk-v2-radius);
  background: transparent;
  color: var(--mk-v2-whatsapp);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mk-v2-footer__bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--mk-v2-line-dark);
  color: #6c6c72;
  font-size: 9px;
  font-weight: 800;
}

.mk-v2-mobile-dock {
  display: none;
}

body.mekevo-v2 .kkch-mbn,
body.mekevo-v2 .kkch-mbn-panel,
body.mekevo-v2 .kkch-mbn-spacer,
body.mekevo-v2 .mk-mobile-dock,
body.mekevo-v2 .mk-wa-float-space {
  display: none !important;
}

body.mekevo-v2 .kkch-wa-float {
  right: 18px !important;
  bottom: 24px !important;
  z-index: 980 !important;
}

@media (max-width: 1320px) {
  .mk-v2-header__inner {
    gap: 16px;
  }

  .mk-v2-nav > a,
  .mk-v2-nav__trigger {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 10px;
  }

  .mk-v2-search-inline {
    width: 190px;
  }

  .mk-v2-selection-link span,
  .mk-v2-wa-button span {
    display: none;
  }

  .mk-v2-selection-link,
  .mk-v2-wa-button {
    width: 44px;
    padding: 0;
  }

  .mk-v2-selection-link b {
    position: absolute;
    top: -7px;
    right: -7px;
  }
}

@media (max-width: 1120px) {
  .mk-v2-nav > a:last-child {
    display: none;
  }
}

@media (max-width: 1024px) {
  body.mekevo-v2 {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .mk-v2-shell {
    width: min(calc(100% - 24px), var(--mk-v2-shell));
  }

  .mk-v2-header {
    top: 0;
  }

  .mk-v2-header__inner {
    min-height: 64px;
    grid-template-columns: 44px 1fr 92px;
    gap: 12px;
  }

  .mk-v2-menu-trigger,
  .mk-v2-mobile-tools,
  .mk-v2-mobile-selection {
    display: inline-grid;
  }

  .mk-v2-mobile-tools {
    display: grid;
    grid-template-columns: 44px 44px;
    gap: 4px;
  }

  .mk-v2-mobile-search,
  .mk-v2-mobile-selection {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--mk-v2-line-dark);
    border-radius: var(--mk-v2-radius);
    background: transparent;
    color: var(--mk-v2-white);
  }

  .mk-v2-brand {
    min-width: 0;
    align-items: center;
    justify-self: center;
  }

  .mk-v2-brand img {
    width: 110px;
    height: 22px;
  }

  .mk-v2-brand span {
    display: none;
  }

  .mk-v2-nav,
  .mk-v2-header__tools,
  .mk-v2-mega {
    display: none !important;
  }

  .mk-v2-mobile-selection {
    position: relative;
  }

  .mk-v2-mobile-selection b {
    position: absolute;
    top: -7px;
    right: -7px;
  }

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

  .mk-v2-mobile-dock {
    position: fixed;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    z-index: 1000;
    display: grid;
    min-height: 64px;
    padding: 5px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--mk-v2-line-dark);
    border-radius: 8px;
    background: rgba(10, 10, 12, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
  }

  .mk-v2-mobile-dock__item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 54px;
    padding: 4px 2px;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #9b9ba1;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }

  .mk-v2-mobile-dock__item:hover,
  .mk-v2-mobile-dock__item:focus-visible {
    background: rgba(255, 255, 255, 0.07);
    color: var(--mk-v2-white);
    outline: none;
  }

  .mk-v2-mobile-dock__item .mk-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .mk-v2-mobile-dock__selection b {
    position: absolute;
    top: 2px;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 8px;
  }

  .mk-v2-mobile-dock__wa {
    color: var(--mk-v2-whatsapp);
  }

  body.mekevo-v2 .kkch-wa-float {
    right: 12px !important;
    bottom: calc(86px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 640px) {
  .mk-v2-footer__grid {
    padding-top: 38px;
    padding-bottom: 38px;
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .mk-v2-footer__brand {
    grid-column: 1 / -1;
  }

  .mk-v2-footer__contact {
    grid-column: 1 / -1;
  }

  .mk-v2-footer__bottom {
    min-height: 64px;
  }

  .mk-v2-search-overlay {
    padding-right: 18px;
    padding-left: 18px;
    place-items: start center;
  }

  .mk-v2-search-overlay__inner {
    padding-top: 30vh;
  }

  .mk-v2-search-overlay h2 {
    margin-bottom: 22px;
  }

  .mk-v2-search-overlay form {
    height: 56px;
    grid-template-columns: 1fr 52px;
  }

  .mk-v2-search-overlay input[type="search"],
  .mk-v2-search-overlay form button {
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-v2-nav__trigger .mk-icon {
    transition: none;
  }
}
