/* ===================================================
   VM Accordion Menu - Вертикальное меню
   Версия: 4.8 - финальное оформление
   =================================================== */

/* ---------- Базовые стили обертки ---------- */
.vm-menu-wrapper {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  background: #fefefe;
  border-radius: 24px;
  padding: 0 0 1.3rem 0;
  transition: box-shadow 0.2s;
  	margin-top: 0px;
}

.vm-menu-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- Кнопка-триггер ---------- */
.vm-menu-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b4c3b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.3px;
  gap: 0.5rem;
  font-family: inherit;
  user-select: none;
}

.vm-menu-toggle:hover {
  background: #f3ece4;
}

.vm-menu-toggle .icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #b48b75;
  display: inline-block;
}

.vm-menu-toggle.open .icon {
  transform: rotate(180deg);
}

/* ---------- Основное меню ---------- */
.vm-menu-wrapper .vm-menu-list {
  display: none !important;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  padding: 0 0.25rem 0.25rem;
  margin: 0;
  background: #fffaf5;
  border-radius: 0 0 24px 24px;
}

.vm-menu-wrapper .vm-menu-list.open {
  display: flex !important;
}

/* ---------- Пункты 1-го уровня ---------- */
.vm-menu-wrapper .vm-menu-list > li {
  border-radius: 18px;
  background: #fcf7f2;
  transition: background 0.15s, border-color 0.2s;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(140, 100, 70, 0.05);
}

.vm-menu-wrapper .vm-menu-list > li:hover {
  background: #f8efe6;
}

.vm-menu-wrapper .vm-menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: #4d3427;
  border-radius: 18px;
  transition: background 0.15s, padding-left 0.2s;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list > li > a:hover {
  background: rgba(180, 139, 117, 0.08);
}

.vm-menu-wrapper .vm-menu-list > li > a .arrow {
  font-size: 0.7rem;
  color: #b48b75;
  transition: transform 0.3s ease, background 0.2s;
  margin-left: auto;
  background: #efe5db;
  border-radius: 30px;
  padding: 0.1rem 0.5rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.vm-menu-wrapper .vm-menu-list > li.open > a .arrow {
  transform: rotate(180deg);
  background: #dccfc2;
}

/* ---------- Подменю 2-го уровня ---------- */
.vm-menu-wrapper .vm-menu-list ul {
  display: none !important;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.3rem 0rem;
  background: #fcf7f2;
  border-radius: 0 0 18px 18px;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list ul.open {
  display: flex !important;
}

.vm-menu-wrapper .vm-menu-list ul li {
  border-radius: 0;
  background: transparent;
  transition: background 0.15s;
  position: relative;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ede5dc;
}

.vm-menu-wrapper .vm-menu-list ul li:last-child {
  border-bottom: none;
}

.vm-menu-wrapper .vm-menu-list ul li:hover {
  background: #f5ede4;
}

.vm-menu-wrapper .vm-menu-list ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.55rem 0.8rem 0.55rem 1.2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #5b4032;
  border-radius: 0;
  gap: 0.5rem;
  transition: background 0.15s, padding-left 0.2s;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list ul li a:hover {
  background: rgba(180, 139, 117, 0.05);
  padding-left: 1.6rem;
}

.vm-menu-wrapper .vm-menu-list ul li[aria-haspopup="true"] > a::after {
  content: '›';
  font-size: 1.2rem;
  color: #b48b75;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.vm-menu-wrapper .vm-menu-list ul li[aria-haspopup="true"].open > a::after {
  transform: rotate(90deg);
}

/* ---------- Подменю 3-го уровня ---------- */
.vm-menu-wrapper .vm-menu-list ul ul {
  display: none !important;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.3rem 0.5rem 0.3rem 1.5rem;
  background: #f8f2ec;
  border-radius: 0 0 18px 18px;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0.8rem;
  bottom: 0;
  width: 2px;
  background: #dccfc2;
  opacity: 0.6;
}

.vm-menu-wrapper .vm-menu-list ul ul.open {
  display: flex !important;
}

.vm-menu-wrapper .vm-menu-list ul ul li {
  border-radius: 0;
  background: transparent;
  transition: background 0.15s;
  position: relative;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e8ddd2;
}

.vm-menu-wrapper .vm-menu-list ul ul li:last-child {
  border-bottom: none;
}

.vm-menu-wrapper .vm-menu-list ul ul li:hover {
  background: #f0e8df;
}

.vm-menu-wrapper .vm-menu-list ul ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.45rem 0.6rem 0.45rem 0.8rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  color: #6b4c3b;
  border-radius: 0;
  gap: 0.5rem;
  transition: background 0.15s, padding-left 0.2s;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list ul ul li a::before {
  content: '●';
  font-size: 0.4rem;
  color: #b48b75;
  margin-right: 0.3rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.vm-menu-wrapper .vm-menu-list ul ul li a:hover {
  background: rgba(180, 139, 117, 0.05);
  padding-left: 1.2rem;
}

.vm-menu-wrapper .vm-menu-list ul ul li[aria-haspopup="true"] > a::after {
  content: '›';
  font-size: 1rem;
  color: #b48b75;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.vm-menu-wrapper .vm-menu-list ul ul li[aria-haspopup="true"].open > a::after {
  transform: rotate(90deg);
}

/* ---------- Подменю 4-го уровня ---------- */
.vm-menu-wrapper .vm-menu-list ul ul ul {
  display: none !important;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.2rem 0.3rem 0.2rem 1.5rem;
  background: #f5efe9;
  border-radius: 0 0 18px 18px;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list ul ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0.8rem;
  bottom: 0;
  width: 2px;
  background: #dccfc2;
  opacity: 0.4;
}

.vm-menu-wrapper .vm-menu-list ul ul ul.open {
  display: flex !important;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li {
  border-radius: 0;
  background: transparent;
  transition: background 0.15s;
  position: relative;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e5dbd2;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li:last-child {
  border-bottom: none;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li:hover {
  background: #ece4db;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.35rem 0.5rem 0.35rem 0.8rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  color: #7d6b5e;
  border-radius: 0;
  gap: 0.5rem;
  transition: background 0.15s, padding-left 0.2s;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li a::before {
  content: '—';
  font-size: 0.5rem;
  color: #b48b75;
  margin-right: 0.3rem;
  flex-shrink: 0;
  opacity: 0.6;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li a:hover {
  background: rgba(180, 139, 117, 0.05);
  padding-left: 1.2rem;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li[aria-haspopup="true"] > a::after {
  content: '›';
  font-size: 0.9rem;
  color: #b48b75;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.vm-menu-wrapper .vm-menu-list ul ul ul li[aria-haspopup="true"].open > a::after {
  transform: rotate(90deg);
}

/* ----- Бейджи ----- */
.vm-menu-wrapper .badge {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 30px;
  white-space: nowrap;
  background: #f0e3d8;
  color: #6b4c3b;
  letter-spacing: 0.2px;
  flex-shrink: 0;
  margin-left: 0.3rem;
}

.vm-menu-wrapper .badge-hit {
  background: #f7ddd0;
  color: #aa5a3a;
  animation: vmPulseHit 2s infinite;
}

.vm-menu-wrapper .badge-vet {
  background: #d9e3e0;
  color: #2d6a5e;
  font-size: 0.55rem;
}

@keyframes vmPulseHit {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ---------- Активный пункт ---------- */
.vm-menu-wrapper .vm-menu-list a.active-trail {
  background: #e3d5c8 !important;
  font-weight: 600;
  border-radius: 0;
  color: #3d2b20;
  position: relative;
}

.vm-menu-wrapper .vm-menu-list a.active-trail::before {
  display: none !important;
  content: none !important;
}

.vm-menu-wrapper .vm-menu-list ul a.active-trail {
  background: #e7dbd0 !important;
}

.vm-menu-wrapper .vm-menu-list ul ul a.active-trail {
  background: #e7dbd0 !important;
}

.vm-menu-wrapper .vm-menu-list ul ul ul a.active-trail {
  background: #e7dbd0 !important;
}

/* =================================================== */
/* ===== УПРАВЛЕНИЕ ПОКАЗОМ МОДУЛЕЙ ===== */
/* =================================================== */

/* =================================================== */
/* ============= ДЕСКТОП (шире 768px) ================ */
/* =================================================== */
@media (min-width: 769px) {
  .mod-morda-menu-mobile {
    display: none !important;
  }
  .mod-morda-menu-desktop {
    display: block !important;
  }
  
  /* На десктопе кнопка скрыта, меню всегда открыто */
  .mod-morda-menu-desktop .vm-menu-toggle {
    display: none !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list {
    display: flex !important;
  }
  
  /* ===== ОТСТУП МЕЖДУ КНОПКАМИ НА ДЕСКТОПЕ ===== */
  .mod-morda-menu-desktop .vm-menu-list {
    gap: 0.6rem !important;
  }
  
  /* ===== ОФОРМЛЕНИЕ КНОПОК НА ДЕСКТОПЕ ===== */
  .mod-morda-menu-desktop .vm-menu-list > li {
    border-left: 4px solid #6b4c3b !important;
    box-shadow: 0 2px 8px rgba(77, 52, 39, 0.2) !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li:hover {
    opacity: 0.9;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li > a {
    color: #fffaf5 !important;
    font-size: 0.95rem !important;
    padding: 0.55rem 1rem !important;
    font-weight: 600 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li > a:hover {
    background: rgba(255, 250, 245, 0.1) !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li > a .arrow {
    background: rgba(255, 250, 245, 0.15) !important;
    color: #fffaf5 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li.open > a .arrow {
    background: rgba(255, 250, 245, 0.25) !important;
  }
  
  /* ===== ТОВАРЫ ДЛЯ СОБАК - КОРИЧНЕВЫЙ ===== */
  .mod-morda-menu-desktop .vm-menu-list > li[data-cat="dogs"] {
    background: #5a3d2e !important;
    border-left-color: #8b6b58 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li[data-cat="dogs"]:hover {
    background: #6b4c3b !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li[data-cat="dogs"].open {
    border-left-color: #dbb8a2 !important;
  }
  
  /* ===== ТОВАРЫ ДЛЯ КОШЕК - СЕРЫЙ ===== */
  .mod-morda-menu-desktop .vm-menu-list > li[data-cat="cats"] {
    background: #6b6b6b !important;
    border-left-color: #999999 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li[data-cat="cats"]:hover {
    background: #7a7a7a !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list > li[data-cat="cats"].open {
    border-left-color: #b8aa9c !important;
  }
  
  /* Подменю на десктопе остаются светлыми */
  .mod-morda-menu-desktop .vm-menu-list ul {
    background: #fcf7f2 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul li a {
    color: #5b4032 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul ul {
    background: #f8f2ec !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul ul li a {
    color: #6b4c3b !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul ul ul {
    background: #f5efe9 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul ul ul li a {
    color: #7d6b5e !important;
  }
  
  /* Бейджи на десктопе */
  .mod-morda-menu-desktop .badge {
    background: rgba(255, 250, 245, 0.2) !important;
    color: #fffaf5 !important;
  }
  
  .mod-morda-menu-desktop .badge-hit {
    background: rgba(247, 221, 208, 0.3) !important;
    color: #e17210 !important;
  }
  
  .mod-morda-menu-desktop .badge-vet {
    background: rgba(217, 227, 224, 0.3) !important;
    color: #7f7bf7 !important;
  }
  
  /* Активный пункт на десктопе */
  .mod-morda-menu-desktop .vm-menu-list a.active-trail {
    background: rgba(255, 250, 245, 0.2) !important;
    color: #ffffff !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul a.active-trail {
    background: #e7dbd0 !important;
    color: #3d2b20 !important;
  }
  
  .mod-morda-menu-desktop .vm-menu-list ul ul a.active-trail {
    background: #e7dbd0 !important;
    color: #3d2b20 !important;
  }
}

/* =================================================== */
/* ============= МОБИЛЬНЫЕ (до 768px) ================ */
/* =================================================== */
@media (max-width: 768px) {
	
	.vm-menu-wrapper {
	margin-top: 15px;
}
	
  .mod-morda-menu-desktop {
    display: none !important;
  }
  .mod-morda-menu-mobile {
    display: block !important;
  }
  
  /* ===== ОФОРМЛЕНИЕ КНОПКИ "КАТАЛОГ ТОВАРОВ" ===== */
  .mod-morda-menu-mobile .vm-menu-toggle {
    background: #4d3427 !important;
    color: #fffaf5 !important;
    border-radius: 20px !important;
    padding: 0.85rem 1.25rem !important;
    box-shadow: 0 2px 8px rgba(77, 52, 39, 0.2) !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-toggle:hover {
    background: #5a3d2e !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-toggle .icon {
    color: #fffaf5 !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-toggle.open {
    background: #5a3d2e !important;
    border-radius: 20px 20px 0 0 !important;
  }
  
  /* ===== ОФОРМЛЕНИЕ КНОПОК ПРИ ОТКРЫТОМ МЕНЮ (ОКАНТОВКА) ===== */
  .mod-morda-menu-mobile .vm-menu-list {
    background: #fffaf5 !important;
    border: 2px solid #4d3427 !important;
    border-top: none !important;
    border-radius: 0 0 20px 20px !important;
    padding: 0.5rem 0.5rem 0.5rem !important;
    margin-top: 0 !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li {
    background: #fcf7f2 !important;
    border-radius: 14px !important;
    overflow: hidden;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li > a {
    color: #4d3427 !important;
    font-size: 1rem !important;
    padding: 0.7rem 1rem !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li > a .arrow {
    background: #efe5db !important;
    color: #b48b75 !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li.open > a .arrow {
    background: #dccfc2 !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li[data-cat="dogs"] {
    background: #faf0e7 !important;
    border-left: 4px solid #dbb8a2 !important;
	margin:5px 0px 5px 0px;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li[data-cat="cats"] {
    background: #f0ede9 !important;
    border-left: 4px solid #b8aa9c !important;
		margin:5px 0px 5px 0px;
  }
  
  /* Окантовка для основных кнопок на мобильных */
  .mod-morda-menu-mobile .vm-menu-list > li[data-cat="dogs"] > a {
    border: 1px solid rgba(219, 184, 162, 0.3) !important;
    border-left: none !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li[data-cat="cats"] > a {
    border: 1px solid rgba(184, 170, 156, 0.3) !important;
    border-left: none !important;
  }
  
  /* Подменю на мобильных */
  .mod-morda-menu-mobile .vm-menu-list ul li a {
    font-size: 0.92rem !important;
    padding: 0.5rem 0.6rem 0.5rem 1rem !important;
    color: #5b4032 !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul li a {
    font-size: 0.88rem !important;
    padding: 0.45rem 0.5rem 0.45rem 0.6rem !important;
    color: #6b4c3b !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul ul li a {
    font-size: 0.84rem !important;
    padding: 0.4rem 0.4rem 0.4rem 0.6rem !important;
    color: #7d6b5e !important;
  }
  
  /* На мобильных стрелки показываем */
  .mod-morda-menu-mobile .vm-menu-list > li > a .arrow {
    display: inline-block !important;
  }
  
  /* Анимация для мобильных */
  .mod-morda-menu-mobile .vm-menu-list {
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateY(-8px);
  }
  
  .mod-morda-menu-mobile .vm-menu-list.open {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-5px);
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul.open {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-5px);
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul.open {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul ul {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-5px);
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul ul.open {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Бейджи на мобильных */
  .mod-morda-menu-mobile .badge {
    background: #f0e3d8 !important;
    color: #6b4c3b !important;
  }
  
  .mod-morda-menu-mobile .badge-hit {
    background: #f7ddd0 !important;
    color: #aa5a3a !important;
  }
  
  .mod-morda-menu-mobile .badge-vet {
    background: #d9e3e0 !important;
    color: #2d6a5e !important;
  }
  
  /* Активный пункт на мобильных */
  .mod-morda-menu-mobile .vm-menu-list a.active-trail {
    background: #e3d5c8 !important;
    color: #3d2b20 !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul a.active-trail {
    background: #e7dbd0 !important;
    color: #3d2b20 !important;
  }
}

/* ---------- ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ ---------- */
@media (max-width: 400px) {
  .mod-morda-menu-mobile .vm-menu-toggle {
    font-size: 0.95rem !important;
    padding: 0.65rem 0.7rem !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list > li > a {
    font-size: 0.9rem !important;
    padding: 0.55rem 0.7rem !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul li a {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.5rem 0.4rem 0.8rem !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul li a {
    font-size: 0.82rem !important;
    padding: 0.35rem 0.4rem 0.35rem 0.6rem !important;
  }
  
  .mod-morda-menu-mobile .vm-menu-list ul ul ul li a {
    font-size: 0.78rem !important;
    padding: 0.3rem 0.3rem 0.3rem 0.5rem !important;
  }
}

/* ---------- Анимация ---------- */
@keyframes vmFadeSlide {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Доступность ---------- */
.vm-menu-toggle:focus-visible,
.vm-menu-wrapper .vm-menu-list a:focus-visible {
  outline: 3px solid #b48b75;
  outline-offset: 2px;
  border-radius: 30px;
}

/* ---------- Печать ---------- */
@media print {
  .vm-menu-wrapper {
    max-width: 100%;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .vm-menu-toggle {
    display: none !important;
  }
  
  .vm-menu-wrapper .vm-menu-list {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .vm-menu-wrapper .vm-menu-list ul {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .vm-menu-wrapper .vm-menu-list ul ul {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .vm-menu-wrapper .vm-menu-list ul ul ul {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
  }
}