/* --- Мобильное меню (drawer) --- */
.nl-mobile-menu.wd-side-hidden {
	--wd-side-hidden-w: 400px;
}

.nl-mobile-menu {
	--nl-mm-bg: #ffffff;
	--nl-mm-surface: #faf8f7;
	--nl-mm-text: #292323;
	--nl-mm-muted: #6f6a6a;
	--nl-mm-accent: #9c2422;
	--nl-mm-accent-soft: #fff3f1;
	--nl-mm-accent-hover: #7a1c1a;
	--nl-mm-border: #ece7e5;
	--nl-mm-radius: 14px;
	--nl-mm-shadow: 0 -8px 32px rgba(41, 35, 35, 0.06);
	display: flex;
	flex-direction: column;
	font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--nl-mm-bg);
	color: var(--nl-mm-text);
	width: min(100vw, 400px);
	box-shadow: var(--nl-mm-shadow);
}

.nl-mm-search {
	flex: 0 0 auto;
	padding-bottom: 4px;
	background: var(--nl-mm-surface);
	box-shadow: inset 0 -1px 0 var(--nl-mm-border);
}

.nl-mobile-menu .nl-mm-search .searchform {
	--wd-form-brd-width: 0;
	--wd-form-bg: transparent;
	--wd-form-color: var(--nl-mm-text);
	--wd-form-placeholder-color: var(--nl-mm-muted);
	z-index: 4;
	box-shadow: none;
}

.nl-mobile-menu .nl-mm-search .searchform input[type="text"] {
	height: 56px;
	padding: 0 56px 0 16px;
	font-size: 16px;
	font-weight: 500;
}

.nl-mobile-menu .nl-mm-search .wd-search-results {
	position: relative;
	z-index: 4;
	border-radius: 0;
	inset-inline: auto;
}

.nl-mobile-menu .nl-mm-search .wd-search-results:not(.wd-opened) {
	display: none;
}

.nl-mobile-menu__inner {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	height: auto;
	overflow: hidden;
	background: var(--nl-mm-bg);
}

.nl-mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
	min-height: 48px;
	padding: 4px 12px 0 16px;
	background: transparent;
}

.nl-mm-header__title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--nl-mm-text);
}

.nl-mm-header__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--nl-mm-muted);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nl-mm-header__close .nl-mm-ui-icon {
	width: 20px;
	height: 20px;
}

.nl-mm-header__close:hover,
.nl-mm-header__close:focus {
	background: var(--nl-mm-surface);
	color: var(--nl-mm-text);
}

.nl-mm-scroll {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.nl-mm-nav {
	padding: 4px 16px 0;
}

.nl-mm-nav__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nl-mm-accordion {
	border: 1px solid var(--nl-mm-border);
	border-radius: var(--nl-mm-radius);
	background: #fff;
	overflow: hidden;
}

.nl-mm-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	min-height: 48px;
	padding: 8px 12px;
	border: 0;
	background: transparent;
	color: var(--nl-mm-text);
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.nl-mm-accordion__trigger:hover,
.nl-mm-accordion__trigger:focus {
	background: var(--nl-mm-surface);
}

.nl-mm-accordion.is-open .nl-mm-accordion__trigger {
	background: var(--nl-mm-accent-soft);
}

.nl-mm-accordion__main {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.nl-mm-ui-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.nl-mm-accordion__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--nl-mm-accent-soft);
	color: var(--nl-mm-accent);
}

.nl-mm-accordion.is-open .nl-mm-accordion__icon {
	background: #fff;
	box-shadow: 0 1px 4px rgba(41, 35, 35, 0.08);
}

.nl-mm-accordion__text {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.nl-mm-accordion__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--nl-mm-text);
}

.nl-mm-accordion__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--nl-mm-accent-soft);
	color: var(--nl-mm-accent);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.nl-mm-accordion__hint {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--nl-mm-muted);
}

.nl-mm-accordion.is-open .nl-mm-accordion__hint {
	color: var(--nl-mm-accent);
}

.nl-mm-accordion__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--nl-mm-border);
	background: #fff;
	color: var(--nl-mm-text);
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.nl-mm-accordion__toggle .nl-mm-ui-icon {
	width: 14px;
	height: 14px;
}

.nl-mm-accordion__plus,
.nl-mm-accordion__minus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.nl-mm-accordion__minus {
	display: none;
}

.nl-mm-accordion.is-open .nl-mm-accordion__plus {
	display: none;
}

.nl-mm-accordion.is-open .nl-mm-accordion__minus {
	display: inline-flex;
}

.nl-mm-accordion.is-open .nl-mm-accordion__toggle {
	border-color: var(--nl-mm-accent);
	background: var(--nl-mm-accent);
	color: #fff;
}

.nl-mm-accordion__panel {
	padding: 0 4px 4px;
	background: var(--nl-mm-surface);
}

.nl-mm-subnav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.nl-mm-subnav__link {
	display: block;
	min-height: 0;
	padding: 5px 10px 5px 14px;
	border-radius: 8px;
	color: var(--nl-mm-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.nl-mm-subnav__link:hover,
.nl-mm-subnav__link:focus {
	color: var(--nl-mm-accent);
	background: rgba(255, 255, 255, 0.8);
}

.nl-mm-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nl-mm-nav__link {
	display: flex;
	align-items: center;
	min-height: 0;
	padding: 5px 14px;
	border-radius: 8px;
	color: var(--nl-mm-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.nl-mm-nav__link:hover,
.nl-mm-nav__link:focus {
	color: var(--nl-mm-accent);
	background: var(--nl-mm-surface);
}

.nl-mm-contacts {
	margin-top: 16px;
	padding: 20px 16px 24px;
	background: var(--nl-mm-surface);
}

.nl-mm-contacts__body {
	display: flex;
	flex-direction: column;
}

.nl-mm-contacts__title {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nl-mm-muted);
}

.nl-mm-stores {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-mm-store {
	padding: 14px 16px;
	border-radius: var(--nl-mm-radius);
	background: #fff;
	border: 1px solid var(--nl-mm-border);
}

.nl-mm-store--primary {
	border-color: #e8d4d2;
	background: linear-gradient(180deg, #fff 0%, #fff8f7 100%);
}

.nl-mm-store__name {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.01em;
	color: var(--nl-mm-muted);
}

.nl-mm-store--primary .nl-mm-store__name {
	color: var(--nl-mm-accent);
}

.nl-mm-store__address {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--nl-mm-text);
	letter-spacing: -0.01em;
}

.nl-mm-store__note {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 400;
	color: var(--nl-mm-muted);
}

.nl-mm-store__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding: 8px 12px 8px 10px;
	border-radius: 10px;
	background: var(--nl-mm-surface);
	color: var(--nl-mm-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	letter-spacing: -0.01em;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nl-mm-store--primary .nl-mm-store__phone {
	background: var(--nl-mm-accent-soft);
	color: var(--nl-mm-accent);
}

.nl-mm-store__phone:hover,
.nl-mm-store__phone:focus {
	background: #fff;
	color: var(--nl-mm-accent);
}

.nl-mm-store__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	color: var(--nl-mm-muted);
}

.nl-mm-store--primary .nl-mm-store__phone-icon {
	color: var(--nl-mm-accent);
}

.nl-mm-store__phone-icon .nl-mm-ui-icon {
	width: 16px;
	height: 16px;
}

.nl-mm-store__maps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nl-mm-map-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 6px 12px 6px 8px;
	border-radius: 999px;
	border: 1px solid var(--nl-mm-border);
	background: var(--nl-mm-surface);
	color: var(--nl-mm-text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.nl-mm-map-pill:hover,
.nl-mm-map-pill:focus {
	border-color: #d8c5c1;
	background: #fff;
	transform: translateY(-1px);
}

.nl-mm-map-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.nl-mm-map-pill__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.nl-mm-footer {
	flex: 0 0 auto;
	padding: 12px 16px max(16px, env(safe-area-inset-bottom));
	background: var(--nl-mm-bg);
	box-shadow: 0 -4px 20px rgba(41, 35, 35, 0.06);
}

.nl-mm-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 14px 20px;
	border-radius: 12px;
	background: var(--nl-mm-accent);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.nl-mm-cta:hover,
.nl-mm-cta:focus {
	background: var(--nl-mm-accent-hover);
	color: #fff;
	transform: translateY(-1px);
}

.wd-search-opened .nl-mobile-menu.wd-opened,
.wd-search-opened .wd-header-mobile-nav.wd-opened {
	pointer-events: none;
}
