/**
 * Bandeau WhatsApp Premium.
 *
 * PERFORMANCE (perfectionnement du 11/09/2026) : ce fichier était
 * auparavant un bloc <style> imprimé en dur dans wp_head() à chaque
 * page (hors accueil). Extrait ici et chargé via wp_enqueue_style()
 * (voir class-wco-whatsapp-bar.php::enqueue_assets()) — mis en cache
 * par le navigateur au lieu d'être retéléchargé à chaque navigation.
 * Contenu strictement identique — aucun changement visuel.
 */

/* Bandeau masqué par défaut */
#ines-whatsapp-bar {
	display: none;
}

/* MOBILE (max 920px) */
@media (max-width: 920px) {
	#ines-whatsapp-bar {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #ffffff;
		border-bottom: 1px solid #eaeaea;
		padding: 8px 0;
		font-family: "Inter", sans-serif;
		font-size: 13px;
		color: #111;
	}

	#ines-whatsapp-bar a {
		color: #d99000;
		text-decoration: none;
		font-weight: 600;
		margin-left: 4px;
	}
}

/* PC (min 921px) */
@media (min-width: 921px) {
	#ines-whatsapp-bar {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #ffffff;
		border-bottom: 1px solid #eaeaea;
		padding: 6px 0;
		font-family: "Inter", sans-serif;
		font-size: 14px;
		letter-spacing: 0.5px;
		color: #111;
	}

	#ines-whatsapp-bar a {
		color: #d99000;
		text-decoration: none;
		font-weight: 600;
		margin-left: 6px;
	}

	#ines-whatsapp-bar a:hover {
		text-decoration: underline;
	}
}
