.mm-burger {
	display: none;
}

/* Поиск временно закрыт по просьбе менеджера (11.09.2026): лупа шапки, строка
   поиска в мобильном меню и формы поиска WP. Вернуть — удалить это правило. */
.header_block .search_form,
form[role="search"] {
	display: none !important;
}

@media (max-width: 991px) {

	.header_block .search_form {
		display: none;
	}

	.mm-burger {
		position: relative;
		display: grid;
		place-items: center;
		flex: none;
		width: 28px;
		height: 28px;
		padding: 0;
		border: 0;
		background: none;
		color: #0d0d11;
		cursor: pointer;
	}

	.mm-burger::before {
		content: "";
		position: absolute;
		inset: -8px;
	}

	.mm-burger svg {
		width: 28px;
		height: 28px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.6;
		stroke-linecap: round;
	}
}

html.mm-lock,
html.mm-lock body {
	overflow: hidden;
}

.mm,
.mm *,
.mm *::before,
.mm *::after {
	box-sizing: border-box;
}

.mm {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	flex-direction: column;
	background: #fff;
	color: #0d0d11;
	font-family: inherit;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.mm.is-open {
	transform: none;
}

.mm[hidden],
.mm [hidden] {
	display: none !important;
}

@media (min-width: 992px) {

	.mm {
		display: none !important;
	}
}

.mm-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 68px;
	padding: 10px 12px 10px 8px;
	padding-top: calc(10px + env(safe-area-inset-top));
	border-bottom: 1px solid #e7e7ef;
	background: #fff;
}

.mm-back,
.mm-close {
	display: grid;
	place-items: center;
	flex: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: none;
	color: #0d0d11;
	cursor: pointer;
}

.mm-back:active,
.mm-close:active {
	background: #f6f6fb;
}

.mm-back svg,
.mm-close svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mm-head {
	flex: 1;
	min-width: 0;
}

.mm-brand {
	display: block;
	padding-left: 8px;
	line-height: 0;
}

.mm-brand img {
	display: block;
	width: auto;
	height: 48px;
}

.mm-title {
	display: block;
	overflow: hidden;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.25;
	color: #0d0d11;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.mm-stage {
	position: relative;
	flex: 1;
	overflow: hidden;
}

.mm-source {
	display: none;
}

.mm-panel {
	position: absolute;
	inset: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 6px 0 12px;
	background: #fff;
	transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.32s ease;
}

.mm-panel.is-enter {
	transform: translateX(100%);
}

.mm-panel.is-behind {
	transform: translateX(-22%);
	opacity: 0.35;
}

.mm-search {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 48px;
	margin: 8px 16px 10px;
	padding: 0 8px 0 14px;
	border-radius: 14px;
	background: #f6f6fb;
	color: #7a7b8c;
}

.mm-search:focus-within {
	box-shadow: 0 0 0 2px rgba(63, 64, 150, 0.25);
}

.mm-search > svg {
	flex: none;
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
}

.mm .mm-search__input {
	flex: 1;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: #0d0d11;
	font: inherit;
	font-size: 16px;
	line-height: 1.2;
	outline: none;
	appearance: none;
}

.mm .mm-search__input:focus-visible {
	outline: none;
}

.mm .mm-search__input::placeholder {
	color: #7a7b8c;
	opacity: 1;
}

.mm .mm-search__input::-webkit-search-cancel-button,
.mm .mm-search__input::-webkit-search-decoration {
	display: none;
}

.mm-search__clear {
	display: grid;
	place-items: center;
	flex: none;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #e7e7ef;
	color: #0d0d11;
	cursor: pointer;
}

.mm-search__clear svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.mm-search__ring {
	display: none;
	flex: none;
	width: 20px;
	height: 20px;
	margin: 0 6px;
	border: 2px solid #d9dae6;
	border-top-color: #3f4096;
	border-radius: 50%;
	animation: mm-spin 0.8s linear infinite;
}

.mm-search.is-loading .mm-search__clear {
	display: none;
}

.mm-search.is-loading .mm-search__ring {
	display: block;
}

.mm-results > * {
	animation: mm-up 0.32s cubic-bezier(0.32, 0.72, 0, 1) both;
}

.mm-state {
	margin: 0;
	padding: 14px 16px;
	font-size: 15px;
	color: #7a7b8c;
}

@keyframes mm-spin {

	to {
		transform: rotate(360deg);
	}
}

@keyframes mm-up {

	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.mm-row {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	border: 0;
	background: none;
	color: #0d0d11;
	font: inherit;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.mm-row:hover,
.mm-row:focus {
	color: #0d0d11;
	text-decoration: none;
}

.mm-row:active {
	background: #f6f6fb;
}

.mm-row--leaf {
	font-size: 15px;
}

.mm-glyph {
	display: grid;
	place-items: center;
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #f6f6fb;
	color: #3f4096;
}

.mm-glyph svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mm-txt {
	flex: 1;
	min-width: 0;
}

.mm-name {
	display: block;
}

.mm-chev {
	flex: none;
	width: 18px;
	height: 18px;
	color: #b9bacb;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mm-group {
	display: block;
	padding: 20px 16px 6px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #7a7b8c;
	text-decoration: none;
}

.mm-all {
	display: block;
	margin: 8px 16px 4px;
	padding: 13px;
	border-radius: 14px;
	background: #f6f6fb;
	color: #3f4096;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
}

.mm-dock {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	padding-bottom: calc(10px + env(safe-area-inset-bottom));
	border-top: 1px solid #e7e7ef;
	background: #fff;
}

.mm-drop {
	position: relative;
}

.mm-plan {
	flex: 1;
	min-width: 0;
}

.mm-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 48px;
	padding: 0 16px;
	border: 0;
	border-radius: 999px;
	background: #f58735;
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}

.mm-caret {
	flex: none;
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.3s;
}

.mm-drop__btn[aria-expanded="true"] .mm-caret {
	transform: rotate(180deg);
}

.mm-drop__list {
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
	z-index: 2;
	margin: 0;
	padding: 12px;
	list-style: none;
	border-radius: 12px;
	background: #f3f3fb;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.mm-drop__list.is-open {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.mm-drop__list li {
	padding: 11px 0;
	border-bottom: 1px solid #e2e2e9;
}

.mm-drop__list li:last-child {
	border-bottom: 0;
}

.mm-expert {
	left: 0;
}

.mm-langs__list {
	min-width: 112px;
}

.mm-langs__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	line-height: 1.2;
	color: #0d0d11;
	text-decoration: none;
}

.mm-langs__item.is-current {
	color: #3f4096;
	font-weight: 500;
}

.mm-langs__item.is-current::after {
	content: "";
	flex: none;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f4096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M20 6 9 17l-5-5'/%3e%3c/svg%3e") center / contain no-repeat;
}

.mm-expert__link {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 1.2;
	color: #0d0d11;
	text-decoration: none;
}

.mm-expert__link::before {
	content: "";
	display: block;
	flex: none;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	background-position: center;
	background-size: cover;
}

.mm-expert__link--wa::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.00258 2C4.68611 2.00363 2.00028 4.69503 2.00391 8.0115C2.00476 9.01791 2.25876 10.0079 2.74255 10.8904L2.28212 13.72L5.11165 13.2595C8.01653 14.8529 11.6637 13.79 13.257 10.8848C14.8504 7.97969 13.7878 4.33311 10.8826 2.73947C9.99995 2.25526 9.00934 2.00096 8.00258 2ZM5.00282 4.72629H6.63804C6.71205 4.72629 6.78302 4.75569 6.83535 4.80802C6.88769 4.86035 6.91709 4.93133 6.91709 5.00533C6.90793 5.37747 6.97046 5.74789 7.10126 6.09641C7.15758 6.21307 7.16997 6.34613 7.13614 6.47119C7.10232 6.59624 7.02454 6.70492 6.91709 6.77728L6.34504 7.33537C6.59868 7.83069 6.93033 8.282 7.32728 8.67201C7.71413 9.07542 8.16361 9.4137 8.65834 9.67378L9.21643 9.10174C9.49548 8.82269 9.62384 8.82269 9.8973 8.91757C10.2458 9.04837 10.6162 9.11089 10.9884 9.10174C11.0613 9.10514 11.1303 9.13562 11.1819 9.18724C11.2335 9.23885 11.264 9.30787 11.2674 9.38079V11.016C11.264 11.0889 11.2335 11.1579 11.1819 11.2095C11.1303 11.2612 11.0613 11.2916 10.9884 11.295C9.34691 11.2235 7.79096 10.5431 6.62409 9.38637C5.46559 8.22072 4.78479 6.66404 4.71541 5.02208C4.71607 4.94527 4.74631 4.87167 4.79984 4.81658C4.85337 4.76149 4.92607 4.72915 5.00282 4.72629Z' stroke='%230D0D11' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.mm-expert__link--mail::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_2001_276)'%3e%3cpath d='M14 3.5L8 9L2 3.5' stroke='%230D0D11' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M2 3.5H14V12C14 12.1326 13.9473 12.2598 13.8536 12.3536C13.7598 12.4473 13.6326 12.5 13.5 12.5H2.5C2.36739 12.5 2.24021 12.4473 2.14645 12.3536C2.05268 12.2598 2 12.1326 2 12V3.5Z' stroke='%230D0D11' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M6.9093 8L2.1543 12.3588' stroke='%230D0D11' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M13.8448 12.3588L9.08984 8' stroke='%230D0D11' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_2001_276'%3e%3crect width='16' height='16' fill='white' /%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.mm-cart,
.mm-lang {
	position: relative;
	display: grid;
	place-items: center;
	flex: none;
	width: 48px;
	height: 48px;
	border: 1px solid #e7e7ef;
	border-radius: 999px;
	background: #fff;
	color: #22235c;
	font: inherit;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.mm-lang {
	display: flex;
	gap: 5px;
	width: auto;
	padding: 0 11px 0 15px;
	cursor: pointer;
}

.mm-lang .mm-caret {
	width: 12px;
	height: 12px;
	stroke-width: 1.5;
}

.mm-cart svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mm-badge {
	position: absolute;
	top: 4px;
	right: 3px;
	display: grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: #f58735;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}

.mm-burger:focus-visible,
.mm :focus-visible {
	outline: 2px solid #f58735;
	outline-offset: 2px;
}

.mm.mm-instant,
.mm.mm-instant .mm-panel {
	transition: none;
}

@media (prefers-reduced-motion: reduce) {

	.mm,
	.mm-panel,
	.mm-caret,
	.mm-drop__list {
		transition: none;
	}

	.mm-results > * {
		animation: none;
	}
}
