/**
* Styles pour le plugin Yonder Maps
*/
.yonder-maps-container {
	width: 100%;
	height: calc(100svh - 160px) !important;
	margin: 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}
.yonder-maps-info-window {
	padding: 15px;
	max-width: 300px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.yonder-maps-info-window img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 10px;
}
.yonder-maps-info-window h3 {
	margin: 0 0 10px;
	font-size: 16px;
	color: #333;
	line-height: 1.4;
}
.hotel-number {
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background-color: var(--e-global-color-132d8e8);
	color: #fff;
	border-radius: 50%;
	margin-right: 8px;
	font-size: 14px;
}
.yonder-maps-info-window p {
	margin: 0 0 8px;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}
.yonder-maps-info-window a {
	display: inline-block;
	padding: 8px 16px;
	background-color: var(--e-global-color-132d8e8);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	transition: background-color 0.2s ease;
}
.yonder-maps-info-window a:hover {
	background-color: var(--e-global-color-132d8e8);
	color: #fff;
}
/* Responsive */
@media screen and (max-width: 480px) {
	.yonder-maps-container {
		height: 300px;
	}
	.yonder-maps-info-window {
		max-width: 250px;
	}
	.yonder-maps-info-window img {
		height: 120px;
	}
} 