/* contacts.stores */

.sh-stores-map-section {
	margin: 0 auto 32px;
	max-width: 1200px;
}

.sh-stores-map-section.is-hidden {
	display: none;
}

.sh-stores-map-shell {
	overflow: hidden;
	border-radius: 1px;
}

.sh-stores-map {
	width: 100%;
	height: 400px;
	background: #e0e2e8;
}

.sh-stores-map[hidden] {
	display: none;
}

.sh-stores-map-fallback {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	min-height: 400px;
	padding: 32px;
	box-sizing: border-box;
	background: #edeef1;
	color: #383b47;
}

.sh-stores-map-fallback[hidden] {
	display: none;
}

.sh-stores-map-fallback-title {
	font-family: 'InterMedium', sans-serif;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	color: #0e0f11;
}

.sh-stores-map-fallback-text {
	max-width: 420px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 20px;
}

.gr-contacts {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 0;
}

.gr-contacts-block1,
.gr-contacts-block2 {
	min-width: 0;
}

.sh-stores-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
}

.sh-store-card {
	display: block;
	width: 100%;
	border: 1px solid #e0e2e8;
	border-radius: 1px;
	background: #ffffff;
	box-sizing: border-box;
	margin-right: -1px;
	margin-bottom: -1px;
	padding: 20px;
	min-height: 112px;
	cursor: pointer;
	text-align: left;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.sh-store-card:hover {
	border-color: #a6a8b2;
}

.sh-store-card.active {
	border-color: #0e0f11;
	position: relative;
	z-index: 1;
}

.sh-store-card:focus-visible {
	outline: 2px solid #0e0f11;
	outline-offset: -2px;
}

.sh-metro-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	line-height: 12px;
	color: #383b47;
	text-transform: uppercase;
}

.sh-metro-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	min-width: 12px;
	background: #383b47;
	border-radius: 50%;
}

.sh-store-card-district {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 11px;
	line-height: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #383B47;
	margin-bottom: 4px;
}

.sh-store-card-adr {
	padding-top: 8px;
	font-family: 'InterMedium', sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #0e0f11;
	text-transform: uppercase;
}

.sh-store-photo-wrap {
	width: 100%;
	overflow: hidden;
	border-radius: 1px;
	background: #e0e2e8;
}

.sh-store-photo {
	width: 100%;
	height: 336px;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

.sh-store-photo.sh-fade-out {
	opacity: 0;
}

.sh-store-progress {
	display: flex;
	gap: 8px;
	padding: 16px 0 0;
}

.sh-store-bar {
	flex: 1;
	height: 2px;
	background: #e0e2e8;
	border-radius: 1px;
	transition: background-color 0.2s ease;
}

.sh-store-bar.active {
	background: #0e0f11;
}

.sh-store-detail-info {
	padding-top: 12px;
	transition: opacity 0.2s ease;
}

.sh-store-detail-info.sh-fade-out {
	opacity: 0;
}

/* Figma 395:3013: layout_B25MNQ — Desktop/Body2 = Inter 400 14px, Text/black */
/* Note: NOT InterMedium, NOT uppercase — Desktop/Body2 is regular weight */
.sh-store-full-address {
	padding-top: 8px;
	font-family: 'InterMedium', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #0e0f11;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sh-store-hours {
	padding-top: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #717883;
}

.sh-store-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	padding-top: 12px;
}

.sh-store-phone {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #0e0f11;
}

.sh-store-phone a {
	color: #0e0f11;
	text-decoration: none;
}

.sh-store-phone a:hover {
	color: #383b47;
}

.sh-store-messengers {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 16px;
}

.sh-store-messenger-link {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	color: #383b47;
	text-decoration: underline;
}

.sh-store-messenger-link:hover {
	color: #0e0f11;
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
	.sh-stores-map-section {
		padding: 0 24px;
	}

	.gr-contacts {
		grid-template-columns: 1fr;
		padding: 32px 24px;
	}

	.sh-stores-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sh-store-photo {
		height: 320px;
	}
}

@media screen and (max-width: 767px) {
	.sh-stores-map-section {
		margin-bottom: 24px;
		padding: 0 16px;
	}

	.sh-stores-map {
		height: 250px;
	}

	.sh-stores-map-fallback {
		min-height: 250px;
		padding: 24px 16px;
	}

	.gr-contacts {
		grid-template-columns: 1fr;
		padding: 24px 16px 0;
		gap: 24px;
	}

	.sh-stores-grid {
		grid-template-columns: 1fr;
	}

	.sh-store-card {
		min-height: 80px;
	}

	.gr-contacts-block2 {
		display: block !important;
	}

	.sh-store-photo {
		height: 250px;
	}

	.sh-store-bottom-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.sh-store-messengers {
		justify-content: flex-start;
	}
}
