/*
  CSS ДЛЯ МЕНЮ TILDA
  ====================
  Добавьте этот код в:
  Настройки сайта → Дополнительный CSS (или Custom CSS)
*/

/* Фон меню */
.t-header {
  background-color: #0f0f0e !important;
  border-bottom: 0.5px solid rgba(255,255,255,0.08) !important;
}

/* Пункты меню */
.t-menu__link-item {
  color: rgba(255,255,255,0.6) !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: color 0.2s !important;
}

/* Hover пунктов меню */
.t-menu__link-item:hover {
  color: #fff !important;
}

/* Активный пункт меню */
.t-menu__link-item_active {
  color: #D85A30 !important;
}

/* Логотип / название сайта */
.t-logo {
  color: #fff !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600 !important;
}

/* Бургер-меню на мобильном */
.t-menuburger__parts span {
  background-color: #fff !important;
}