/* Убираем скролл */
.t-menusub__content {
    overflow-y: hidden !important;
    height: auto !important;
    max-height: none !important;
}

/* Стабильное положение подменю - убираем анимации */
.t-menusub__menu {
    position: absolute !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* ОБВОДКА ДЛЯ ВСЕХ ПУНКТОВ ГЛАВНОГО МЕНЮ */
.t-menu__link-item {
    transform: none !important;
    transition: none !important;
    border: 1px solid transparent !important; /* Прозрачная граница по умолчанию */
    border-radius: 4px !important;
    padding: 0 10px !important;
}

.t-menu__link-item:hover {
    background: #f0f8ff !important;
    color: #0066cc !important;
    border: 1px solid #0066cc !important; /* Синяя обводка при наведении */
    transform: none !important;
}

/* Акцент на раскрывающихся пунктах меню */
.t450__link-item_submenu.t-menusub__target-link:hover {
    background: #f0f8ff !important;
    color: #0066cc !important;
    border: 1px solid #0066cc !important;
    border-radius: 4px !important;
    padding: 0 10px;
    transform: none !important;
}

/* Акцент на подменю при наведении на главный пункт */
.t450__list_item:hover .t-menusub {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.t-menusub__list {
    text-align: left !important;
    padding-left: 10px !important;
    margin-left: 0 !important;
}

/* Акцент на пунктах подменю при наведении */
.t-menusub__link-item.t-name.t-name_xs {
    padding-left: 10px !important;
    transform: none !important;
    transition: none !important;
}

.t-menusub__link-item.t-name.t-name_xs:hover {
    background: #0066cc !important;
    color: white !important;
    transform: none !important;
    padding-left: 10px !important;
}

/* Стрелка-индикатор у раскрывающихся пунктов */
.t450__link-item_submenu.t-menusub__target-link::after {
    content: " ▼" !important;
    font-size: 10px !important;
    color: #0066cc !important;
    margin-left: 5px !important;
}

/* Усиливаем видимость подменю при показе */
.t-menusub__menu.t-menusub__menu_bottom {
    margin-top: 10px !important;
    z-index: 1000 !important;
}