.floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	z-index: 9999;
}

.language-switcher,
.whatsapp-button {
	display: flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 6px;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.language-switcher {
	background: white;
	color: #000000;
}

.language-switcher .flag-icon {
	width: 20px;
	height: auto;
	margin-right: 6px;
}

.whatsapp-button {
	background-color: #25d366;
	color: white;
}

.whatsapp-button img {
	margin-right: 8px;
}

.whatsapp-label {
	font-size: 14px;
	transition: opacity 0.3s ease-in-out;
	color: #ffffff;
}

/* Responsive: adjust slightly if needed */
@media (max-width: 576px) {
	.floating-buttons {
		bottom: 15px;
		right: 15px;
	}

	.whatsapp-button,
	.language-switcher {
		padding: 5px 8px;
		font-size: 13px;
	}

	.whatsapp-label {
		display: none;
	}
}
