/* Tenaë — Contact Button
   Conteneur FAB fixe bas-droite : bulle d'accroche + panel + bouton rond. */

#tenae-fab {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

/* ── Bulle d'accroche ──────────────────────────────────────────────────── */

#tenae-bubble {
	display: none;
	align-items: center;
	gap: 8px;
	background: #80b8ad;
	color: #ffffff;
	font-family: sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	padding: 10px 12px 10px 14px;
	border-radius: 16px 16px 4px 16px;
	box-shadow: 0 4px 16px rgba(128, 184, 173, 0.4);
	max-width: 220px;
	animation: tenae-pop 0.3s ease;
}

#tenae-bubble.visible {
	display: flex;
}

@keyframes tenae-pop {
	from { opacity: 0; transform: scale(0.85) translateY(6px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}

#tenae-bubble-close {
	background: rgba(255, 255, 255, 0.25);
	border: none;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	padding: 0;
}

#tenae-bubble-close:hover {
	background: rgba(255, 255, 255, 0.4);
}

/* ── Panel WhatsApp / Email ────────────────────────────────────────────── */

#tenae-fab-panel {
	display: none;
	flex-direction: column;
	gap: 8px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	padding: 12px;
	min-width: 210px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

#tenae-fab-panel.open {
	display: flex;
}

.tenae-fab-label {
	font-size: 11px;
	color: #888;
	margin: 0 0 6px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	font-family: sans-serif;
}

.tenae-contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	text-decoration: none;
	transition: opacity 0.15s;
}

.tenae-contact-link:hover {
	opacity: 0.88;
}

.tenae-contact-link.whatsapp {
	background: #25D366;
}

.tenae-contact-link.email {
	background: #eaf4f2;
}

.tenae-contact-link .tenae-link-text p {
	margin: 0;
	font-family: sans-serif;
	line-height: 1.3;
}

.tenae-contact-link .tenae-link-text .title {
	font-size: 13px;
	font-weight: 600;
}

.tenae-contact-link .tenae-link-text .subtitle {
	font-size: 11px;
	opacity: 0.8;
}

.tenae-contact-link.whatsapp .title,
.tenae-contact-link.whatsapp .subtitle {
	color: #ffffff;
}

.tenae-contact-link.email .title {
	color: #3a9485;
}

.tenae-contact-link.email .subtitle {
	color: #666;
}

/* ── Bouton principal ──────────────────────────────────────────────────── */

#tenae-fab-btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #80b8ad;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(128, 184, 173, 0.45);
	transition: transform 0.2s, box-shadow 0.2s;
}

#tenae-fab-btn:hover {
	transform: scale(1.07);
	box-shadow: 0 6px 20px rgba(128, 184, 173, 0.55);
}

#tenae-fab-btn svg {
	transition: transform 0.25s;
}

#tenae-fab-btn.open svg {
	transform: rotate(45deg);
}

/* ── Accessibilité ─────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	#tenae-fab *,
	#tenae-bubble {
		animation: none !important;
		transition: none !important;
	}
}
