/* Доработка шапки/навигации.
   Скоуп — только элементы шапки; остальной дизайн сайта не затрагивается.
   Разметку добавляет tools/gen-landing-pages.mjs (tweakHeader). */

/* Отдел по работе с клиентами: иконка СБОКУ от текста (не сверху) -------- */
.header-dept__label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.625rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #94a3b8;
	line-height: 1.2;
}
.header-dept__icon {
	width: 0.95rem;
	height: 0.95rem;
	color: #d6ad60;
	flex-shrink: 0;
	display: block;
}
.header-dept__phone {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.4rem;
	margin-top: 0.25rem;
}
.header-dept-phone-icon {
	width: 0.95rem;
	height: 0.95rem;
	flex-shrink: 0;
}

/* 1. Блок «24/7 / Без выходных» — в две строки ---------------------------- */
/* display управляется исходными Tailwind-классами hidden / lg:flex */
.header-247 {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	line-height: 1;
	margin-left: 1.25rem;
	margin-right: 0.75rem;
}
.header-247__big {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: #fff;
}
.header-247__sub {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #cfd8e6;
	white-space: nowrap;
	animation: header247Pulse 2.4s ease-in-out infinite;
}
.header-247__dot {
	width: 6px;
	height: 6px;
}
@keyframes header247Pulse {
	0%,
	100% {
		opacity: 0.55;
	}
	50% {
		opacity: 1;
	}
}
@media (prefers-reduced-motion: reduce) {
	.header-247__sub {
		animation: none;
		opacity: 1;
	}
}

/* 2 + 4. Действия шапки — WhatsApp, уведомления, Онлайн-заказ, Позвонить,
   Чат с менеджером, Регистрация/Вход — всё в одну строку, компактно -------- */
.header-actions {
	flex-wrap: nowrap;
	min-width: 0;
}
.header-actions > * {
	white-space: nowrap;
}
.header-actions .action-btn,
.header-actions .header-messenger,
.header-actions #auth-button {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}
.header-actions .header-messenger {
	font: inherit;
	cursor: pointer;
}
/* Онлайн-заказ строго в 1 строку (иконка + текст не переносятся) */
.header-actions .action-btn span,
.header-actions .header-messenger__label {
	white-space: nowrap;
}

/* 3. Иконка уведомлений рядом с WhatsApp: тот же размер/выравнивание,
   гостям не показывать (класс hidden управляется notifications.js) -------- */
.header-actions #auth-notifications-wrap {
	display: inline-flex;
	align-items: center;
}
.header-actions #auth-notifications-wrap.hidden {
	display: none;
}
.header-actions .header-notifications {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Аккаунт-дропдаун: детерминированное раскрытие поверх конфликта
   исходный index.css (display:none/grid) и app.css (visibility/opacity).
   Владелец клика — app.js. Раскрытие через display без transition —
   не зависит от доигрывания анимации. */
#auth-header-user #account-menu,
#auth-header-user-mobile #account-menu-mobile {
	transition: none !important;
}
/* поднимаем над шапкой, иначе .site-header__top перехватывает клики по пунктам */
#auth-header-user,
#auth-header-user-mobile {
	position: relative;
}
#auth-header-user.is-open,
#auth-header-user-mobile.is-open {
	z-index: 200;
}
/* при открытом меню поднимаем всю шапку над hero (у него isolation:isolate),
   иначе нижние пункты меню перекрываются секцией hero-screen.
   Правило общее для ЛЮБОГО дропдауна шапки (аккаунт и навигация). */
.site-header:has(.nav-dropdown.is-open) {
	z-index: 200 !important;
}
/* ГЛАВНОЕ: .site-header__viewport имеет overflow:hidden (анимация слайда шапки)
   и обрезает выпадающее меню, уходящее ниже шапки. При открытом дропдауне
   снимаем обрезку, иначе меню просто отсекается и «не работает». */
.site-header__viewport:has(.nav-dropdown.is-open) {
	overflow: visible !important;
}

/* --- Выпадающие подменю навигации (пункты из «сайтика») ------------------ */
/* Обёртка пункта с подменю: позиционный контекст для .nav-dropdown-menu */
.site-header__nav-drop {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 2px;
}
/* Шеврон-кнопка рядом со ссылкой (Услуги, О нас) — в стиле ссылок навигации */
.nav-drop-chevron {
	background: none;
	border: 0;
	padding: 2px;
	cursor: pointer;
	color: inherit;
	display: inline-flex;
	align-items: center;
}
/* Пункт-тумблер без своей страницы (Портфолио, Интересное) */
.nav-drop-label {
	background: none;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	color: inherit;
}
/* Раскрытие подменю навигации — та же детерминированная схема, что у аккаунта */
.site-header__nav-drop .nav-dropdown-menu {
	transition: none !important;
	left: 0;
	right: auto;
	/* overflow НЕ ставим: 2-й уровень (4 категории) короткий, а overflow обрезал бы
	   боковые списки 3-го уровня (они выходят за правый край через left:100%) */
	overflow: visible;
}
.site-header__nav-drop.is-open .nav-dropdown-menu {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: none !important;
	z-index: 200 !important;
}
.site-header__nav-drop:not(.is-open) .nav-dropdown-menu {
	display: none !important;
}
.nav-dropdown-menu .nav-placeholder {
	display: block;
	padding: 0.65rem 0.75rem;
	border-radius: 0.45rem;
	color: #64748b;
	line-height: 1.35;
	text-align: left;
	white-space: nowrap;
	cursor: not-allowed;
}

/* --- 3-й уровень: вложенное подменю услуг (как в «сайтике») ---------------- */
/* Категория внутри «Услуги» раскрывает сбоку (left:100%) список своих сервисов.
   Только десктопная нав-полоса; оформление 1-в-1 с .nav-dropdown-menu (app.css). */
.nav-subdrop {
	position: relative;
	display: block;
}
.nav-subdrop-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
	margin: 0;
	padding: 0.65rem 0.75rem;
	border: 0;
	border-radius: 0.45rem;
	background: none;
	color: #cbd5e1;
	font: inherit;
	letter-spacing: inherit;
	text-align: left;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.nav-subdrop-label:hover,
.nav-subdrop.is-open > .nav-subdrop-label {
	background: rgba(214, 173, 96, 0.12);
	color: #efd28d;
}
.nav-subdrop-arrow {
	width: 0.4rem;
	height: 0.4rem;
	flex: none;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform 0.2s ease;
}
/* стрелка поворачивается вниз, когда категория раскрыта */
.nav-subdrop.is-open > .nav-subdrop-label .nav-subdrop-arrow {
	transform: rotate(45deg);
}
.nav-subdrop-menu {
	position: absolute;
	left: 100%;
	top: -0.65rem;
	display: none;
	grid-auto-rows: max-content;
	min-width: 15rem;
	max-height: min(72vh, 520px);
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0.65rem;
	gap: 0.2rem;
	background: #101827;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.75rem;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
	z-index: 210;
}
/* 3-й уровень открывается по КЛИКУ на категорию (класс is-open ставит app.js) */
.nav-subdrop.is-open > .nav-subdrop-menu {
	display: grid;
}
/* 1. Пункты навигации — равномерно по всей ширине нав-полосы (одинаковые
   промежутки через space-evenly). 2. Крупнее зона клика каждого пункта
   (перебиваем базовый padding:0 у .site-header__nav-link). */
.site-header__nav-list {
	flex-wrap: nowrap;
	flex: 1 1 auto;
	width: 100%;
	justify-content: space-between;
	gap: 0.35rem;
}
.site-header__nav-link {
	padding: 0.5rem 0.4rem !important;
	line-height: 1;
	white-space: nowrap;
}
@media (max-width: 1535.98px) {
	.site-header__nav-list {
		gap: 0.25rem;
		letter-spacing: 0.02em;
	}
	.site-header__nav-link {
		padding: 0.5rem 0.3rem !important;
	}
}
@media (max-width: 1279.98px) {
	.site-header__nav-list {
		font-size: 10.5px;
	}
}
#auth-header-user.is-open #account-menu,
#auth-header-user-mobile.is-open #account-menu-mobile {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: none !important;
	z-index: 200 !important;
}
#auth-header-user:not(.is-open) #account-menu,
#auth-header-user-mobile:not(.is-open) #account-menu-mobile {
	display: none !important;
}

/* Аккаунт: только иконка (аватар), без текста «Мой аккаунт» рядом */
.account-dropdown__toggle--icon-only {
	max-width: none;
	min-width: 0;
	padding: 0.2rem;
	gap: 0;
	border-radius: 999px;
}
.account-dropdown__toggle--icon-only .header-avatar-wrap {
	display: inline-flex;
}

/* Мобильный аккаунт: слева от колокольчика в кластере (иконка) */
.header-account-by-burger {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.header-account-by-burger:not(.hidden) {
	display: inline-flex;
}
.header-account-by-burger .account-dropdown__toggle--icon-only {
	width: 2.55rem;
	height: 2.55rem;
	padding: 0;
	border: none;
	background: transparent;
	justify-content: center;
}
.header-account-by-burger .account-dropdown__toggle--icon-only:hover {
	background: transparent;
	border-color: transparent;
	color: #efd28d;
}
.header-account-by-burger .account-avatar--sm {
	width: 2rem;
	height: 2rem;
}
.header-account-by-burger .account-dropdown-menu {
	right: 0;
	left: auto;
	top: calc(100% + 0.35rem);
	min-width: 13.5rem;
}

/* Верх панели: имя + Online (как meta на десктопе, внутри выпадающего меню) */
.account-dropdown-menu__user {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.12rem;
	padding: 0.35rem 0.75rem 0.55rem;
	margin: 0 0 0.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.account-dropdown-menu__user .account-dropdown__name {
	max-width: none;
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1.25;
	color: #f8fafc;
}
.account-dropdown-menu__online-row {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 1rem;
}
.account-dropdown-menu__online-row .header-presence-dot,
.account-dropdown-menu__online-row .chat-presence-dot {
	position: static;
	right: auto;
	bottom: auto;
	flex-shrink: 0;
}
.account-dropdown-menu__user .account-dropdown__role {
	max-width: none;
}
.account-dropdown-menu__user .header-online-label {
	display: inline;
}

/* 5. Адаптация под ширину десктопа: сжимаем отступы и шрифт,
   чтобы всё влезало в одну строку без переносов --------------------------- */
@media (max-width: 1439.98px) {
	.header-actions {
		gap: 0.5rem;
	}
	.header-actions .action-btn,
	.header-actions .header-messenger,
	.header-actions #auth-button {
		padding: 0.5rem 0.7rem;
		font-size: 0.68rem;
	}
	.header-247 {
		margin-left: 0.9rem;
		margin-right: 0.5rem;
	}
	.header-247__big {
		font-size: 1rem;
	}
}
@media (max-width: 1279.98px) {
	.header-actions {
		gap: 0.4rem;
	}
	.header-actions .action-btn,
	.header-actions .header-messenger,
	.header-actions #auth-button {
		padding: 0.45rem 0.55rem;
		font-size: 0.62rem;
	}
	.header-247__big {
		font-size: 0.95rem;
	}
	.header-247__sub {
		font-size: 0.58rem;
	}
}

/* ========================================================================= */
/* НЕОН + МОБИЛЬНОЕ МЕНЮ                                                      */
/* ========================================================================= */

/* 1. Неоновое сине-фиолетовое свечение при наведении на ЛЮБОЙ пункт --------- */
.site-header__nav-link,
.nav-drop-label,
.nav-subdrop-label,
.nav-dropdown-menu a,
.nav-subdrop-menu a,
.macc-head,
.macc-toplink,
.macc-subhead,
.macc-link {
	transition: color 0.35s ease, text-shadow 0.35s ease, background-color 0.2s ease;
}
.mobile-menu__nav a,
.mobile-menu__link-btn {
	transition: background-color 0.2s ease, color 0.35s ease, text-shadow 0.35s ease !important;
}
/* ЕДИНЫЙ неоновый hover для ВСЕХ пунктов навигации без исключений:
   1-й уровень, тумблеры выпадашек, пункты выпадающих списков, подменю услуг
   и всё мобильное меню. !important перебивает золотую подсветку из app.css
   (.nav-dropdown-menu a:hover), чтобы эффект был одинаковым везде. */
.site-header__nav-link:hover,
.nav-drop-label:hover,
.nav-subdrop-label:hover,
.nav-dropdown-menu a:hover,
.nav-subdrop-menu a:hover,
.mobile-menu__nav a:hover,
.mobile-menu__link-btn:hover,
.macc-head:hover,
.macc-toplink:hover,
.macc-subhead:hover,
.macc-link:hover {
	color: #efd28d !important;
	background: transparent !important;
	text-shadow:
		0 0 6px rgba(129, 140, 248, 0.95),
		0 0 12px rgba(139, 92, 246, 0.8),
		0 0 22px rgba(59, 130, 246, 0.55) !important;
}

/* Ничего не выезжает за пределы экрана -------------------------------------- */
/* Выпадающие списки правых пунктов (О нас, Портфолио, Интересное) открываются
   влево — их правый край привязан к пункту, а не левый. */
#nav-menu-about,
#nav-menu-portfolio,
#nav-menu-interesting {
	left: auto !important;
	right: 0 !important;
}
/* Общий предохранитель: любое выпадающее меню не шире вьюпорта. */
.nav-dropdown-menu {
	max-width: calc(100vw - 1.5rem);
}
/* 3-й уровень (список услуг сбоку): если не влезает вправо — переносим влево. */
@media (max-width: 1200px) {
	.nav-subdrop-menu {
		left: auto;
		right: 100%;
	}
}

/* 2. Плавное открытие мобильного меню (сверху вниз, через max-height) ------- */
/* Бургер toggl'ит класс .hidden (display:none = мгновенно). На мобиле держим
   меню в потоке и анимируем высоту — overflow:hidden у .mobile-menu уже есть. */
@media (max-width: 1023.98px) {
	.mobile-menu[data-mobile-menu] {
		display: block !important;
		overflow: hidden;
		opacity: 1;
		transition: max-height 0.38s ease, opacity 0.3s ease;
	}
	.mobile-menu[data-mobile-menu].hidden {
		max-height: 0 !important;
		opacity: 0;
		pointer-events: none;
	}
	/* Явное открытое состояние: гарантируем раскрытие меню (конкретная цель для
	   анимации max-height и видимость), чтобы бургер всегда показывал содержимое. */
	.mobile-menu[data-mobile-menu]:not(.hidden) {
		max-height: calc(100vh - 78px) !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}
}

/* Открытый бургер — ПОВЕРХ всего контента страницы.
   Шапка фиксирована на z-50, но на страницах (видео и др.) есть секции
   с высоким z-index (до 13000) и inline z-2026 — они перекрывали открытое
   меню. Меню — потомок .site-header, поэтому при открытии поднимаем всю
   шапку над любым контентом. Класс is-menu-open вешает шапка.js. */
.site-header.is-menu-open {
	z-index: 100000 !important;
}

/* 3. Аккордеон вложенных пунктов в мобильном меню -------------------------- */
.macc-wrap {
	display: grid;
	gap: 0.05rem;
	margin-top: 0.1rem;
}
.macc-head,
.macc-toplink,
.macc-subhead,
.macc-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 0;
	border-radius: 0.65rem;
	background: transparent;
	text-align: left;
	color: #e2e8f0;
	font-family: inherit;
	line-height: 1.25;
	cursor: pointer;
	text-decoration: none;
}
.macc-head,
.macc-toplink {
	padding: 0.42rem 0.7rem;
	font-size: 0.82rem;
	font-weight: 700;
}
.macc-subhead {
	padding: 0.4rem 0.7rem 0.4rem 1.35rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #cbd5e1;
}
.macc-link {
	padding: 0.34rem 0.7rem 0.34rem 2rem;
	font-size: 0.78rem;
	font-weight: 500;
	color: #aeb9cc;
}
.macc-link--disabled,
.macc-link--disabled:hover {
	background: transparent !important;
	color: #64748b !important;
	text-shadow: none !important;
	cursor: not-allowed;
}
.macc-head:hover,
.macc-toplink:hover,
.macc-subhead:hover,
.macc-link:hover {
	background: rgba(214, 173, 96, 0.1);
	color: #efd28d;
}
.macc-panel {
	display: none;
}
.macc.is-open > .macc-panel,
.macc-sub.is-open > .macc-panel {
	display: block;
}
.macc-arrow {
	width: 0.4rem;
	height: 0.4rem;
	flex: none;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}
.macc.is-open > .macc-head .macc-arrow,
.macc-sub.is-open > .macc-subhead .macc-arrow {
	transform: rotate(-135deg);
}
/* «Регистрация / Вход» и «Чат» — кнопки в стиле Онлайн-заказ/WhatsApp.
   Форму/размер/иконку даёт исходник (.mobile-menu__action[cid]); здесь — только
   градиент и цвет, как у модификаторов --wa/--order. */
.mobile-menu__action--auth {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #fff;
	box-shadow: 0 6px 14px rgba(99, 102, 241, 0.28);
}
.mobile-menu__action--chat {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	color: #fff;
	box-shadow: 0 6px 14px rgba(37, 99, 235, 0.28);
}

/* === Мобильная шапка: бургер справа, колокольчик сразу слева от него ====== */
/* 24/7 (header-status-mobile) не трогаем — как было. */

/* На desktop бургер/меню скрыты (как в исходнике) — кластер тоже */
@media (min-width: 1024px) {
	.header-burger-cluster {
		display: none !important;
	}
}

/* Десктоп: пилюля аккаунта одинаковой ширины для ЛЮБОЙ роли (создатель = клиент).
   Длинная подпись роли создателя больше не расширяет пилюлю и не выводит её за
   край экрана — отступ справа такой же, как у клиента. */
@media (min-width: 1024px) {
	#auth-header-user .account-dropdown__toggle {
		max-width: 10.5rem;
	}
	#auth-header-user .account-dropdown__name,
	#auth-header-user .account-dropdown__role {
		max-width: 6.5rem;
	}
}

/* Кластер занимает 3-ю колонку grid шапки (раньше там был .burger-btn) */
@media (max-width: 1023.98px) {
	.site-header__top .header-burger-cluster {
		grid-column: 3;
		justify-self: end;
		align-self: center;
		margin-left: 0 !important;
	}
}

.header-burger-cluster {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.1rem;
	flex-shrink: 0;
	margin-left: auto;
}
.header-burger-cluster .burger-btn {
	margin-left: 0 !important;
	/* display:grid задаёт app.css / page css — не ломаем */
}

/* Уведомления — в кластере РЯДОМ С БУРГЕРОМ (слева от него). Позиционирование
   даёт .header-burger-cluster (grid-column 3) + .header-notif-by-burger ниже;
   показ включает app.js (снятие hidden при входе). */

/* Колокольчик: только слева от бургера, не над 24/7 */
.header-notif-by-burger {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.header-notif-by-burger:not(.hidden):not([hidden]) {
	display: inline-flex;
}
.header-notif-by-burger .header-notifications {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.55rem;
	height: 2.55rem;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: #e2e8f0;
	cursor: pointer;
}
.header-notif-by-burger .header-notifications:hover {
	color: #efd28d;
}

/* --- Пункты в гамбургере: колонка, без ломания ряда на узких экранах --- */
.mobile-menu__actions {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 0.4rem !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	min-width: 0;
}
.mobile-menu__actions > .mobile-menu__action {
	flex: 0 0 auto !important;
	width: 100% !important;
	min-width: 0 !important;
	justify-content: center;
	white-space: normal;
}
/* .hidden должен надёжно скрывать пункт (у .mobile-menu__action свой display).
   Нужно, чтобы «Регистрация / Вход» исчезала при входе (app.js вешает .hidden). */
.mobile-menu__action.hidden {
	display: none !important;
}
.mobile-menu__actions > .mobile-menu__account {
	flex: 0 0 auto;
	width: 100%;
	min-width: 0;
}

/* Аккаунт СВЕРХУ внутри гамбургер-меню (карточка: аватар+имя+роль и пункты).
   Показывается только при входе (id auth-header-user-mobile снимает hidden app.js).
   Для гостя вместо него в меню — «Регистрация / Вход» (app.js скрывает её при входе). */
.mobile-menu__account {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 0.6rem 0.5rem;
	margin-bottom: 0.35rem;
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu__account.hidden {
	display: none !important;
}
.mobile-menu__account-head {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.1rem 0.15rem 0.5rem;
}
.mobile-menu__account-head .header-avatar-wrap {
	position: relative;
	display: inline-flex;
	flex: none;
}
.mobile-menu__account-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.mobile-menu__account-name {
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	color: #f8fafc;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mobile-menu__account-role {
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #d6ad60;
}
.mobile-menu__account-link {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0.5rem 0.55rem;
	border: 0;
	border-radius: 0.55rem;
	background: transparent;
	color: #e2e8f0;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}
.mobile-menu__account-link:hover {
	background: rgba(214, 173, 96, 0.1);
	color: #efd28d;
}
.mobile-menu__account-link.hidden {
	display: none !important;
}
/* Убрать хвосты старой 2-й строки, если где-то остались */
.header-mobile-row2 {
	display: none !important;
}
