/* =========================
   CONTENEDOR
   ========================= */

.vth-navigation-area {
  position: relative;
  z-index: 40;
  width: min(94vw, 1500px);
  margin: -10px auto 0;
  padding: 0;
  overflow: visible;
}

.vth-navigation {
  position: relative;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}


/* =========================
   BARRA PRINCIPAL
   ========================= */

.vth-menu {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;

  gap: 22px;
  min-height: 104px;
  margin: 0;
  padding: 0 34px;

  border: 1px solid rgba(185, 124, 255, 0.34);
  border-radius: 22px;

  background:
    linear-gradient(
      90deg,
      rgba(70, 20, 128, 0.20),
      transparent 16%,
      transparent 84%,
      rgba(70, 20, 128, 0.20)
    ),
    radial-gradient(circle at 12% 0%, rgba(205, 166, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(125, 44, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(255, 211, 106, 0.08), transparent 28%),
    linear-gradient(
      180deg,
      rgba(18, 12, 28, 0.94),
      rgba(5, 4, 9, 0.98) 58%,
      rgba(13, 7, 23, 0.96)
    );

  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.62),
    0 0 46px rgba(125, 44, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 32px rgba(0, 0, 0, 0.28),
    inset 0 0 34px rgba(125, 44, 255, 0.08);

  list-style: none;
  backdrop-filter: blur(10px);
  overflow: visible;
}

.vth-menu::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 48%;
  border-radius: 21px 21px 52px 52px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.018) 48%,
      rgba(255, 255, 255, 0)
    );

  pointer-events: none;
}

.vth-menu::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -1px;

  height: 2px;
  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(125, 44, 255, 0.72),
      rgba(211, 171, 255, 0.98),
      rgba(255, 211, 106, 0.45),
      rgba(211, 171, 255, 0.98),
      rgba(125, 44, 255, 0.72),
      transparent
    );

  box-shadow:
    0 0 12px rgba(196, 141, 255, 0.38),
    0 0 28px rgba(125, 44, 255, 0.22);

  pointer-events: none;
}


/* =========================
   ITEMS
   ========================= */

.vth-menu,
.vth-menu-item,
.vth-menu-link {
  min-width: 0;
}

.vth-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 92px;
  overflow: visible;
}

.vth-menu-item + .vth-menu-item::before {
  content: "";
  position: absolute;
  left: -11px;
  width: 1px;
  height: 22px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(185, 124, 255, 0.18),
      rgba(255, 211, 106, 0.10),
      transparent
    );

  opacity: 0.75;
}

.vth-menu-item.vth-has-children,
.vth-has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}


/* =========================
   LINKS GENERALES
   ========================= */

.vth-menu-link {
  position: relative;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 62px;
  padding: 0 18px;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  color: #eee4ff !important;

  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.015em;
  white-space: nowrap;
  text-align: center;
  text-decoration: none !important;

  overflow: visible !important;
  text-overflow: unset !important;

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.58),
    0 0 10px rgba(125, 44, 255, 0.14);

  transition:
    transform 160ms ease,
    color 160ms ease,
    text-shadow 160ms ease;
}

.vth-menu-link span {
  overflow: visible !important;
  text-overflow: unset !important;
}

.vth-menu-link::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  z-index: -1;

  border-radius: 16px;

  background:
    radial-gradient(circle at 50% 50%, rgba(125, 44, 255, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));

  opacity: 0;
  filter: blur(8px);
  transform: scale(0.92);

  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.vth-menu-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 13px;

  height: 2px;
  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(196, 141, 255, 0.95),
      rgba(255, 211, 106, 0.72),
      rgba(196, 141, 255, 0.95),
      transparent
    );

  opacity: 0;
  transform: scaleX(0.45);

  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.vth-menu-link:hover {
  color: #ffffff !important;
  transform: translateY(-2px);

  text-shadow:
    0 0 10px rgba(211, 171, 255, 0.36),
    0 0 18px rgba(125, 44, 255, 0.22);
}

.vth-menu-link:hover::before,
.vth-menu-link.link-active::before {
  opacity: 1;
  transform: scale(1);
}

.vth-menu-link:hover::after,
.vth-menu-link.link-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.vth-menu-link.link-active {
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  text-shadow:
    0 0 12px rgba(218, 184, 255, 0.46),
    0 0 22px rgba(125, 44, 255, 0.28);
}

.vth-menu-link.link-active::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 211, 106, 0.11), transparent 28%),
    radial-gradient(circle at 50% 58%, rgba(125, 44, 255, 0.30), transparent 62%);

  filter: blur(10px);
}

.vth-menu-link.link-active::after {
  height: 3px;
  bottom: 12px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(218, 184, 255, 1),
      rgba(255, 211, 106, 0.92),
      rgba(218, 184, 255, 1),
      transparent
    );

  box-shadow:
    0 0 8px rgba(255, 211, 106, 0.26),
    0 0 16px rgba(168, 117, 255, 0.26);
}


/* =========================
   INICIO / LINKS NORMALES
   ========================= */

@media (min-width: 769px) {
  .vth-menu-item:not(.vth-has-children) > .vth-menu-link {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .vth-menu-home .vth-menu-link,
  .vth-menu-home .vth-menu-link.link-active {
    transform: translateY(8px);
  }

  .vth-menu-home .vth-menu-link:hover {
    transform: translateY(6px);
  }
}


/* =========================
   CATEGORÍA CON IMAGEN
   HTML esperado:
   .vth-category-toggle
     img.vth-menu-category-image
     span.vth-menu-category-text
     span.vth-menu-category-arrow
       span.vth-menu-arrow-icon
   ========================= */

.vth-category-toggle {
  position: relative;
  isolation: isolate;

  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px;
  width: 320px;
  min-width: 320px;
  min-height: 92px;
  padding: 0 22px;

  border: 0 !important;
  border-radius: 18px !important;

  background: transparent !important;
  color: #eee4ff !important;

  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none !important;

  overflow: visible !important;

  transition:
    transform 160ms ease,
    color 160ms ease,
    text-shadow 160ms ease;
}

.vth-category-toggle::after {
  display: none !important;
  content: none !important;
}

.vth-category-toggle::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  z-index: -1;

  border-radius: 18px;

  background:
    radial-gradient(circle at 35% 50%, rgba(125, 44, 255, 0.20), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));

  opacity: 0;
  filter: blur(8px);
  transform: scale(0.94);

  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.vth-category-toggle:hover,
.vth-category-toggle.link-active {
  color: #ffffff !important;
  transform: translateY(-2px);

  text-shadow:
    0 0 10px rgba(211, 171, 255, 0.36),
    0 0 18px rgba(125, 44, 255, 0.22);
}

.vth-category-toggle:hover::before,
.vth-category-toggle.link-active::before {
  opacity: 1;
  transform: scale(1);
}

.vth-menu-category-image {
  width: 80px !important;
  height: 80px !important;
  flex: 0 0 80px !important;

  display: block;
  object-fit: contain;
  margin: 0;

  image-rendering: auto;

  filter:
    drop-shadow(0 0 10px rgba(168, 85, 247, 0.55))
    drop-shadow(0 0 18px rgba(125, 44, 255, 0.22));

  transform: translateY(0);
}

.vth-menu-category-text {
  position: relative;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  line-height: 1;
  white-space: nowrap;

  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.015em;

  color: #eee4ff;

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.58),
    0 0 10px rgba(125, 44, 255, 0.14);

  transform: translateY(1px);
}

.vth-menu-category-text::after {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  bottom: -10px;

  height: 3px;
  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(218, 184, 255, 1),
      rgba(255, 211, 106, 0.92),
      rgba(218, 184, 255, 1),
      transparent
    );

  opacity: 0;
  transform: scaleX(0.45);

  box-shadow:
    0 0 8px rgba(255, 211, 106, 0.26),
    0 0 16px rgba(168, 117, 255, 0.26);

  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.vth-category-toggle:hover .vth-menu-category-text::after,
.vth-category-toggle.link-active .vth-menu-category-text::after {
  opacity: 1;
  transform: scaleX(1);
}


/* =========================
   FLECHA CSS REDONDA
   ========================= */

.vth-menu-category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  min-width: 34px;

  margin-left: 4px;

  border: 1px solid rgba(190, 132, 255, 0.45);
  border-radius: 999px;

  background:
    radial-gradient(circle at 50% 30%, rgba(211, 171, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(34, 10, 62, 0.98), rgba(12, 1, 22, 0.99));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 12px rgba(125, 44, 255, 0.20);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.vth-menu-arrow-icon {
  width: 8px;
  height: 8px;

  border-right: 2px solid #e7d5ff;
  border-bottom: 2px solid #e7d5ff;

  transform: translateY(-2px) rotate(45deg);

  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.vth-category-toggle:hover .vth-menu-category-arrow,
.vth-menu-item.expanded > .vth-category-toggle .vth-menu-category-arrow,
.vth-menu-item.vth-has-children:hover > .vth-category-toggle .vth-menu-category-arrow {
  border-color: rgba(222, 191, 255, 0.82);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(125, 44, 255, 0.34),
    0 0 28px rgba(190, 132, 255, 0.14);
}

.vth-category-toggle:hover .vth-menu-arrow-icon,
.vth-menu-item.expanded > .vth-category-toggle .vth-menu-arrow-icon,
.vth-menu-item.vth-has-children:hover > .vth-category-toggle .vth-menu-arrow-icon {
  border-color: #ffffff;
  transform: translateY(2px) rotate(225deg);
}

/* Oculta el botón + antiguo si quedó en el HTML */
.vth-menu-toggle {
  display: none !important;
}


/* =========================
   SUBMENÚ
   ========================= */

.vth-menu-sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  z-index: 999;

  width: max-content;
  min-width: 260px;
  max-width: 340px;

  margin: 0;
  padding: 10px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  border: 1px solid rgba(190, 132, 255, 0.38);
  border-radius: 18px;

  background:
    radial-gradient(circle at 20% 0%, rgba(190, 132, 255, 0.16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(125, 44, 255, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(24, 6, 44, 0.98), rgba(8, 1, 15, 0.99));

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.66),
    0 0 34px rgba(125, 44, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -14px 28px rgba(0, 0, 0, 0.22);

  list-style: none;

  transform: translateX(-50%) translateY(10px) scale(0.98);
  transform-origin: top center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.vth-menu-sub::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;

  width: 14px;
  height: 14px;

  border-top: 1px solid rgba(190, 132, 255, 0.38);
  border-left: 1px solid rgba(190, 132, 255, 0.38);

  background: rgba(24, 6, 44, 0.98);

  transform: translateX(-50%) rotate(45deg);
}

.vth-has-children:hover > .vth-menu-sub,
.vth-has-children.expanded > .vth-menu-sub,
.vth-menu-item.vth-has-children:hover > .vth-menu-sub,
.vth-menu-item.vth-has-children.expanded > .vth-menu-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.vth-sub-item {
  display: block;
  width: 100%;
}

.vth-sub-link {
  position: relative;

  width: 100%;
  min-height: 44px;
  padding: 10px 14px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  border-radius: 12px !important;

  color: #eee4ff !important;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  text-decoration: none !important;

  background: transparent !important;

  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.vth-sub-link::after {
  display: none !important;
  content: none !important;
}

.vth-sub-link::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;

  border-radius: 10px;

  background:
    linear-gradient(90deg, rgba(125, 44, 255, 0.16), rgba(255, 211, 106, 0.055));

  opacity: 0;

  transition: opacity 160ms ease;
}

.vth-sub-link:hover,
.vth-sub-link.link-active {
  color: #ffffff !important;
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.045) !important;

  box-shadow:
    inset 0 0 0 1px rgba(190, 132, 255, 0.18),
    0 0 16px rgba(125, 44, 255, 0.12);
}

.vth-sub-link:hover::before,
.vth-sub-link.link-active::before {
  opacity: 1;
}

.vth-menu-sub-category-image {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;

  object-fit: contain;
  display: block;

  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.35));
}

.vth-sub-link span {
  display: inline-flex;
  align-items: center;

  white-space: nowrap;
  line-height: 1.2;
}


/* =========================
   MÓVIL EXTRA
   ========================= */

.vth-mobile-extra-link {
  width: 100%;
  justify-content: center;

  border: 1px solid rgba(168, 117, 255, 0.32) !important;
  border-radius: 999px !important;

  background:
    linear-gradient(180deg, rgba(28, 7, 52, 0.96), rgba(10, 1, 18, 0.96)) !important;

  color: #f4eaff !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.vth-popup-close {
  border: 1px solid rgba(190, 132, 255, 0.38) !important;
  border-radius: 999px !important;

  background:
    linear-gradient(180deg, rgba(34, 10, 62, 0.98), rgba(12, 1, 22, 0.99)) !important;

  color: #f4eaff !important;
  font-weight: 900 !important;
}


/* =========================
   DESKTOP MEDIO
   ========================= */

@media (max-width: 1380px) {
  .vth-navigation-area {
    width: min(95vw, 1380px);
  }

  .vth-menu {
    gap: 16px;
    padding: 0 24px;
  }

  .vth-menu-link {
    padding: 0 14px;
    font-size: 14px;
  }

  .vth-category-toggle {
    width: 290px;
    min-width: 290px;
  }
}

@media (max-width: 1180px) {
  .vth-navigation-area {
    width: min(94vw, 1160px);
    margin-top: -8px;
  }

  .vth-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 88px;
    padding: 12px 18px;
  }

  .vth-menu-item + .vth-menu-item::before {
    display: none;
  }

  .vth-menu-link {
    width: auto;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .vth-category-toggle {
    width: 260px;
    min-width: 260px;
    min-height: 80px;
  }

  .vth-menu-category-image {
    width: 68px !important;
    height: 68px !important;
    flex: 0 0 68px !important;
  }
}


/* =========================
   MÓVIL
   ========================= */

@media (max-width: 768px) {
  .vth-navigation-area {
    position: relative !important;
    z-index: 35 !important;

    width: 100% !important;
    max-width: 390px !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto !important;
    padding: 0 10px !important;

    box-sizing: border-box !important;
    overflow: visible !important;
  }

  #site-navigation,
  .vth-navigation {
    display: block !important;
    position: relative !important;

    width: 100% !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    overflow: hidden !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    transition:
      max-height 220ms ease,
      opacity 160ms ease,
      margin-top 160ms ease;
  }

  #site-navigation.vth-nav-open,
  .vth-navigation.vth-nav-open {
    height: auto !important;
    min-height: 0 !important;
    max-height: 900px !important;

    margin-top: 14px !important;
    padding: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    overflow: visible !important;
  }

  #site-navigation::-webkit-scrollbar,
  #site-navigation *::-webkit-scrollbar,
  .vth-navigation::-webkit-scrollbar,
  .vth-navigation *::-webkit-scrollbar,
  .vth-menu::-webkit-scrollbar,
  .vth-menu *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .vth-menu {
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    gap: 7px !important;
    margin: 0 !important;
    padding: 12px !important;

    border: 1px solid rgba(190, 132, 255, 0.34) !important;
    border-radius: 16px !important;

    background:
      radial-gradient(circle at 14% 0%, rgba(218, 184, 255, 0.12), transparent 34%),
      radial-gradient(circle at 100% 100%, rgba(125, 44, 255, 0.10), transparent 42%),
      linear-gradient(180deg, rgba(24, 13, 38, 0.94), rgba(7, 5, 12, 0.98)) !important;

    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.52),
      0 0 26px rgba(125, 44, 255, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;

    list-style: none !important;

    overflow: visible !important;
    box-sizing: border-box !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .vth-menu::before,
  .vth-menu::after,
  .vth-menu-item::before,
  .vth-menu-item::after,
  .menu-item::before,
  .menu-item::after {
    display: none !important;
    content: none !important;
  }

  .vth-menu-item,
  .vth-menu-item.vth-has-children,
  .vth-has-children {
    position: relative !important;
    z-index: 2 !important;

    width: 100% !important;
    min-height: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: stretch !important;

    overflow: visible !important;
  }

  .vth-menu-link,
  .vth-category-toggle {
    position: relative !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 0 13px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    border: 0 !important;
    border-radius: 10px !important;

    background: transparent !important;
    color: #f1e7ff !important;

    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow: none !important;

    overflow: visible !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;

    text-shadow:
      0 1px 0 rgba(0, 0, 0, 0.55),
      0 0 10px rgba(125, 44, 255, 0.14) !important;

    transform: none !important;
  }

  .vth-menu-link::before,
  .vth-category-toggle::before,
  .vth-menu-link::after,
  .vth-category-toggle::after {
    display: none !important;
    content: none !important;
  }

  .vth-menu-link:hover,
  .vth-menu-link.link-active,
  .vth-category-toggle:hover,
  .vth-category-toggle.link-active {
    color: #ffffff !important;
    transform: none !important;
    background: rgba(125, 44, 255, 0.10) !important;

    text-shadow:
      0 0 10px rgba(218, 184, 255, 0.36),
      0 0 18px rgba(125, 44, 255, 0.22) !important;
  }

  .vth-menu-category-image {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .vth-menu-category-text {
    font-size: 13px !important;
    transform: none;
  }

  .vth-menu-category-text::after {
    bottom: -7px;
    height: 2px;
  }

  .vth-menu-category-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-left: auto;
  }

  .vth-menu-sub {
    position: static !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    margin: 6px 0 0 !important;
    padding: 8px !important;

    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .vth-menu-sub::before {
    display: none !important;
    content: none !important;
  }

  .vth-sub-link {
    min-height: 38px !important;
    padding: 9px 12px !important;
    font-size: 12px !important;
  }

  .vth-menu-sub-category-image {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }

  .vth-mobile-site-link,
  .vth-mobile-logout {
    width: 100% !important;
    display: flex !important;
  }

  .vth-mobile-extra-link {
    min-height: 38px !important;
    border-radius: 12px !important;
  }

  .vth-popup-close {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .vth-navigation-area {
    max-width: 360px !important;
    padding: 0 8px !important;
  }

  #site-navigation.vth-nav-open,
  .vth-navigation.vth-nav-open {
    margin-top: 12px !important;
  }

  .vth-menu {
    padding: 11px !important;
    border-radius: 15px !important;
  }

  .vth-menu-link,
  .vth-category-toggle {
    min-height: 48px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .vth-menu-category-image {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
  }

  .vth-menu-category-text::after {
    bottom: -6px;
  }
}
/* =========================
   FINAL SUBMENÚ DESKTOP
   ========================= */

@media (min-width: 769px) {
  .vth-menu-item.vth-has-children {
    position: relative !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .vth-menu-item.vth-has-children > .vth-category-toggle {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .vth-menu-item.vth-has-children > .vth-menu-sub {
    position: absolute !important;

    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;

    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;

    transform: translateX(-50%) translateY(10px) scale(0.98) !important;
    transform-origin: top center !important;
  }

  .vth-menu-item.vth-has-children:hover > .vth-menu-sub,
  .vth-menu-item.vth-has-children.expanded > .vth-menu-sub {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .vth-menu-item.vth-has-children > .vth-menu-sub::before {
    left: 50% !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }
}