.ssw-address-map {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	--ssw-map-zoom-size: 40px;
	--ssw-map-zoom-offset-x: 22px;
	--ssw-map-zoom-offset-y: 22px;
	--ssw-map-zoom-bg: rgba(255, 255, 255, 0.94);
	--ssw-map-zoom-color: #233e56;
	--ssw-map-zoom-border: rgba(35, 62, 86, 0.12);
	--ssw-map-zoom-radius: 12px;
}

.ssw-address-map__surface {
	display: block;
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	background: linear-gradient(180deg, #edf4f6 0%, #d4e3e8 100%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 24px;
	box-shadow:
		0 22px 44px rgba(81, 109, 123, 0.2),
		0 8px 18px rgba(22, 44, 64, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.ssw-address-map__canvas {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 420px;
	min-height: 240px;
	background: linear-gradient(180deg, #ecf3f5 0%, #d5e4e8 100%);
}

.ssw-address-map__canvas img {
	max-width: none;
}

.ssw-address-map__canvas .gm-style,
.ssw-address-map__canvas .gm-style iframe,
.ssw-address-map__canvas .gm-style > div {
	border-radius: inherit;
	font-family: inherit;
}

.ssw-address-map__canvas .gm-style .gm-style-iw-c {
	padding: 0 !important;
	border-radius: 18px !important;
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18) !important;
}

.ssw-address-map__canvas .gm-style .gm-style-iw-d {
	overflow: auto !important;
}

.ssw-address-map__canvas .gm-style .gm-style-iw-tc::after {
	background: rgba(255, 255, 255, 0.96);
}

.ssw-address-map__canvas .gm-style button.gm-ui-hover-effect {
	top: 10px !important;
	right: 10px !important;
	width: 28px !important;
	height: 28px !important;
	border-radius: 999px;
	opacity: 0.8;
}

.ssw-address-map__controls {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.ssw-address-map__controls--topleft {
	top: var(--ssw-map-zoom-offset-y);
	left: var(--ssw-map-zoom-offset-x);
}

.ssw-address-map__controls--topright {
	top: var(--ssw-map-zoom-offset-y);
	right: var(--ssw-map-zoom-offset-x);
}

.ssw-address-map__controls--bottomleft {
	bottom: var(--ssw-map-zoom-offset-y);
	left: var(--ssw-map-zoom-offset-x);
}

.ssw-address-map__controls--bottomright {
	right: var(--ssw-map-zoom-offset-x);
	bottom: var(--ssw-map-zoom-offset-y);
}

.ssw-address-map__control-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--ssw-map-zoom-size);
	height: var(--ssw-map-zoom-size);
	padding: 0;
	background: var(--ssw-map-zoom-bg);
	border: 1px solid var(--ssw-map-zoom-border);
	color: var(--ssw-map-zoom-color);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ssw-address-map__control-button:first-child {
	border-radius: var(--ssw-map-zoom-radius) var(--ssw-map-zoom-radius) 0 0;
}

.ssw-address-map__control-button:last-child {
	border-radius: 0 0 var(--ssw-map-zoom-radius) var(--ssw-map-zoom-radius);
}

.ssw-address-map__control-button + .ssw-address-map__control-button {
	border-top: 0;
}

.ssw-address-map__control-button:hover,
.ssw-address-map__control-button:focus {
	background: #fff;
	border-color: rgba(35, 62, 86, 0.22);
	color: #162c40;
	outline: none;
}

.ssw-address-map__control-button:focus {
	box-shadow: inset 0 0 0 1px rgba(22, 44, 64, 0.14);
}

.ssw-address-map__marker-label {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 152px;
	min-height: 82px;
	padding: 20px 18px 18px;
	background: #223d56;
	border: 0;
	border-radius: 0;
	box-shadow: 0 12px 24px rgba(20, 42, 60, 0.12);
	transform: translate(-50%, calc(-100% + 9px));
	cursor: pointer;
}

.ssw-address-map__marker-label::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 16px;
	height: 16px;
	background: #223d56;
	transform: translateX(-50%) rotate(45deg);
	box-shadow: 0 6px 14px rgba(20, 42, 60, 0.1);
}

.ssw-address-map__marker-label:hover,
.ssw-address-map__marker-label:focus {
	background: #223d56;
	outline: none;
}

.ssw-address-map__marker-label:hover::after,
.ssw-address-map__marker-label:focus::after {
	background: #223d56;
}

.ssw-address-map__marker-label-text {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ssw-address-map__notice {
	margin-bottom: 16px;
	padding: 14px 16px;
	border: 1px solid #cbd5e1;
	border-radius: 14px;
	background: #f8fafc;
	color: #0f172a;
	font-size: 14px;
	line-height: 1.5;
}

.ssw-address-map__notice--warning {
	border-color: #f59e0b;
	background: #fffbeb;
	color: #92400e;
}

.ssw-address-map__notice--empty {
	margin-bottom: 0;
	border-color: #fecaca;
	background: #fef2f2;
	color: #991b1b;
}

.ssw-address-map__popup {
	min-width: 220px;
	padding: 18px;
}

.ssw-address-map__popup-title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #0f172a;
}

.ssw-address-map__popup-description {
	font-size: 14px;
	line-height: 1.55;
	color: #334155;
}

.ssw-address-map__popup-description p {
	margin: 0;
}
