.product-map {
	margin-bottom: 1.25rem;
}
.product-map .leaflet-popup-content-wrapper {
	border-radius: var(--border-radius_m);
	width: 600px;
	height: 220px;
}

.product-popup__name {
	box-sizing: border-box;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.625rem;
	max-height: 50px;
}
.leaflet-container a.product-popup__name {
	color: var(--color-brown);
}
.leaflet-container a.product-popup__name:is(:active, :focus-visible, :hover) {
	color: var(--color-blue-dark);
}
.product-popup__price {
	color: var(--color-brown);
	font-weight: 600;
	font-size: 1.125rem;
}
.product-popup__img {
	border-radius: 6px 0 0 6px;
	object-fit: cover;
	width: 265px;
	height: 220px;
}
.product-popup__img-mob {
	display: none;
	border-radius: 100%;
	object-fit: cover;
	width: 80px;
	height: 80px;
}
.product-popup__right {
	padding: 10px;
}
.product-popup__line {
	background: var(--color-gray-light);
	height: 1px;
}
.product-popup__property {
	font-weight: 500;
	line-height: 1.2;
}
.product-popup__button.button {
	color: var(--color-white);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.product-map .leaflet-popup-content-wrapper {
		width: 320px;
		height: 248px;
	}
	.product-popup__img {
		display: none;
	}
	.product-popup__img-mob {
		display: block;
	}
}