/* Верхнее меню */
.wb-topbar { background: #007263; font-size: 14px; }
.wb-topnav { display: flex; gap: 20px; padding: 5px 0; }
.wb-topnav a { text-decoration: none; color: #fff; }
.wb-topnav a:hover { color: #ffffff; }

/* Основная шапка */
.wb-mainbar { background: #007263;  }
.wb-logo { font-size: 22px; font-weight: bold; color: #fff; text-decoration: none; }

/* Поиск */



/* Меню Каталога */
.wb-menu {
  position: absolute; top: 120px; right: 20px;
  width: 250px; background: #fff;
  border: 1px solid #ddd; display: none; z-index: 1000;
}
.wb-menu ul { list-style: none; margin: 0; padding: 0; }
.wb-menu li a {
  display: block; padding: 12px 15px;
  text-decoration: none; color: #333;
  border-bottom: 1px solid #eee;
}
.wb-menu li a:hover { background: #f5f5f5; color: #82158c; }

/* Меню пользователя слева */
.wb-user-menu {
  position: fixed; top: 0; left: -300px;
  width: 300px; height: 100%;
  background: #fff; border-right: 1px solid #ddd;
  transition: left 0.3s ease; z-index: 2000;
  padding: 20px;
}
.wb-user-menu.active { left: 0; }
.wb-user-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 20px;
}
.wb-user-header h3 { margin: 0; font-size: 18px; }
.wb-user-close {
  background: none; border: none; font-size: 18px; cursor: pointer;
}
.wb-user-menu ul { list-style: none; padding: 0; margin: 0; }
.wb-user-menu li a {
  display: block; padding: 12px; color: #333; text-decoration: none;
  border-radius: 4px;
}
.wb-user-menu li a:hover { background: #f5f5f5; color: #82158c; }

/* Кнопки пользователя и каталога */
.wb-catalog-btn {
  background: #ff0078;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-user-btn:hover,
.wb-catalog-btn:hover {
  background: #e0006b;
}

/* Кнопка Каталог справа */
.wb-catalog-btn {
  margin-left: 15px;
}

.menu-logo {
    display: flex;
}

.menu-icon-svg path {
    fill: #007263;
}

.menu-desktop {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; /* добавлено: вертикальное выравнивание по центру */
    font-weight: bold;    
    padding-top: 10px;
    padding-bottom: 10px;
}

.menu-left, .menu-right  {
    display: flex;
    flex-direction: row;
    margin-top: 0px;
    align-items: center; /* добавлено: вертикальное выравнивание по центру */
}

.menu-left, .menu-right  {
    justify-content: flex-start;
}

.menu-right {
    justify-content: flex-end;    
}

.menu-left-item {
    margin-right: 30px;
}

.menu-right-item {
    margin-left: 20px;
}

.menu-active a {
    color: #C4C4C4;
}

