.brand-logo img {
	width: 60px;
}
.container-header nav {
	margin-top:0em;
}
.container-header .container-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;                 
  width: 100%;
  padding-bottom: .5em;
}
.container-header .container-nav .mod-custom:last-child {
  margin-left: auto;
}
.btn-login {
  display: inline-block;
  padding: 0.5rem 1.75rem;
  background: #FF6F61;     
  border-radius: 7px;  
  transition: background 0.2s ease;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-login:hover {
  background: #ad6458;  
  color: #fff;
}

.mod-menu .metismenu-item a:focus,
.mod-menu .metismenu-item a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.mod-menu .metismenu-item a {
  transition: color 0.2s ease;
}

.mod-menu .metismenu-item a:hover {
  color: #006D77;
}

.container-header .container-nav .container-search, .container-header .container-nav nav {
  margin-top:0px;
}
@media (min-width: 992px) {
  /* Делаем кнопку-стрелку некликабельной и убираем квадрат */
  .mod-menu .mm-toggler {
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 4px !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    pointer-events: none;  /* ← вот это ключевое! */
  }
  
  /* Убираем любые фокусы и активные состояния */
  .mod-menu .mm-toggler:focus,
  .mod-menu .mm-toggler:active,
  .mod-menu .mm-toggler:hover {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }
  
  /* Подменю скрыто по умолчанию */
  .mod-menu .metismenu-item.deeper > .mm-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
  }
  
  /* Раскрытие при наведении на весь пункт */
  .mod-menu .metismenu-item.deeper:hover > .mm-collapse {
    display: block !important;
  }
  
  /* Родительский пункт — relative для позиционирования */
  .mod-menu .metismenu-item.deeper {
    position: relative;
  }
  
  /* Стили подпунктов */
  .mod-menu .metismenu-item.deeper > .mm-collapse .metismenu-item {
    padding: 0;
  }
  
  .mod-menu .metismenu-item.deeper > .mm-collapse a {
    display: block;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
  }
  
  /* Поворот стрелки при наведении (опционально) */
  .mod-menu .metismenu-item.deeper:hover .mm-toggler:after {
    transform: rotate(180deg);
  }
  
  .mod-menu .mm-toggler:after {
    transition: transform 0.2s ease;
  }
}
/* Только для мобильных — меню выпадает поверх, не сдвигая шапку */
@media (max-width: 991px) {
  .container-header .navbar {
    position: static;
  }
  
  .container-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 1rem;
  }
  
  .container-header .container-nav {
    position: relative;
  }
}