.actudata-whatsapp-chat {
	position: fixed;
	right: clamp(1rem, 2vw, 1.5rem);
	bottom: clamp(1rem, 2vw, 1.5rem);
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	pointer-events: none;
}

.actudata-whatsapp-chat__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	pointer-events: auto;
	text-decoration: none;
}

.actudata-whatsapp-chat__link:hover,
.actudata-whatsapp-chat__link:focus-visible {
	transform: scale(1.06);
	background: #1ebe57;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.actudata-whatsapp-chat__link:focus-visible {
	outline: 2px solid var(--colBleuData, #0f3371);
	outline-offset: 3px;
}

.actudata-whatsapp-chat__icon {
	display: block;
	width: 1.45rem;
	height: 1.45rem;
}

.actudata-whatsapp-chat__label {
	display: none;
	pointer-events: none;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: var(--colBlanc, #fff);
	color: var(--colGrisTypo, #3b484e);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	white-space: nowrap;
}

@media (min-width: 768px) {
	.actudata-whatsapp-chat:hover .actudata-whatsapp-chat__label,
	.actudata-whatsapp-chat:focus-within .actudata-whatsapp-chat__label {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	.actudata-whatsapp-chat__link {
		transition: none;
	}
}
