/* Mehoff Stores Map */
.mehoff-stores-map{
	--msm-ink:#1a1a1a;
	--msm-accent:#ea5528;
	--msm-muted:#666;
	--msm-line:#ece8e4;
	--msm-bg:#f7f5f2;
	--msm-height:520px;
	font-family:var(--body-font,Montserrat,sans-serif);
	color:var(--msm-ink);
	margin:0 0 32px;
}
.mehoff-stores-map__title{
	margin:0 0 18px;
	font-size:1.25em;
	font-weight:600;
	letter-spacing:.04em;
	text-transform:uppercase;
}
.mehoff-stores-map__notice{
	padding:18px 20px;
	background:var(--msm-bg);
	border-left:3px solid var(--msm-accent);
	color:var(--msm-muted);
}
.mehoff-stores-map__layout{
	display:grid;
	grid-template-columns:minmax(280px,340px) minmax(0,1fr);
	gap:0;
	border:1px solid var(--msm-line);
	background:#fff;
	height:var(--msm-height);
	max-height:var(--msm-height);
	overflow:hidden;
}
.mehoff-stores-map--compact .mehoff-stores-map__layout{
	grid-template-columns:1fr;
	height:var(--msm-height,380px);
	max-height:var(--msm-height,380px);
}
.mehoff-stores-map__list{
	display:flex;
	flex-direction:column;
	height:100%;
	max-height:100%;
	overflow-x:hidden;
	overflow-y:auto;
	border-right:1px solid var(--msm-line);
	background:#fff;
	scrollbar-width:thin;
	scrollbar-color:#cfc8c0 transparent;
}
.mehoff-stores-map__list::-webkit-scrollbar{width:6px}
.mehoff-stores-map__list::-webkit-scrollbar-track{background:transparent}
.mehoff-stores-map__list::-webkit-scrollbar-thumb{
	background:#cfc8c0;
	border-radius:3px;
}
.mehoff-stores-map__item{
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	gap:4px;
	width:100%;
	padding:16px 18px;
	border:0;
	border-bottom:1px solid var(--msm-line);
	border-radius:0;
	background:transparent;
	text-align:left;
	cursor:pointer;
	transition:background .15s,box-shadow .15s;
}
.mehoff-stores-map__item:hover{background:#faf8f6}
.mehoff-stores-map__item.is-active{
	background:var(--msm-bg);
	box-shadow:inset 3px 0 0 var(--msm-accent);
}
.mehoff-stores-map__item-name{
	font-size:15px;
	font-weight:600;
	color:var(--msm-ink);
}
.mehoff-stores-map__item-meta{
	font-size:13px;
	line-height:1.4;
	color:var(--msm-muted);
}
.mehoff-stores-map__item-action{
	margin-top:6px;
	font-size:11px;
	font-weight:600;
	letter-spacing:.05em;
	text-transform:uppercase;
	color:var(--msm-accent);
}
.mehoff-stores-map__map-wrap{
	position:relative;
	height:100%;
	min-height:0;
	min-width:0;
	overflow:hidden;
	background:#e8e4e0;
}
/* Только контейнер — внутренние pane Яндекса не трогаем (иначе белый оверлей) */
.mehoff-stores-map__canvas{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	overflow:hidden;
}
.mehoff-stores-balloon{
	font:13px/1.4 var(--body-font,Montserrat,sans-serif);
	color:#1a1a1a;
	max-width:240px;
}
.mehoff-stores-balloon strong{
	display:block;
	margin-bottom:6px;
	font-size:14px;
}
.mehoff-stores-balloon a{color:#ea5528;text-decoration:none}
.contacts__map .mehoff-stores-map{margin:0}
.contacts__map .mehoff-stores-map__layout{
	height:380px;
	max-height:380px;
}

@media (max-width:991px){
	.mehoff-stores-map__layout{
		grid-template-columns:1fr;
		height:auto;
		max-height:none;
	}
	.mehoff-stores-map__list{
		max-height:260px;
		border-right:0;
		border-bottom:1px solid var(--msm-line);
	}
	.mehoff-stores-map__map-wrap{
		height:380px;
	}
}
