/* =============================================
   Menú Flotante - Raíces · Frontend
   ============================================= */

#floating-raices-widget {
	position: fixed;
	right: 0;
	transform: translateY(-50%);
	z-index: 99999;
	background: var(--fr-bg, #1a3d5c);
	border-radius: 8px 0 0 8px;
	overflow: hidden;
	box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.28);
	margin: 0;
	padding: 0;
	list-style: none;
}

#floating-raices-widget .fr-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 18px 13px 14px;
	color: var(--fr-color, #ffffff);
	text-decoration: none !important;
	transition: background-color 0.18s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	min-width: 185px;
	box-sizing: border-box;
	cursor: pointer;
}

#floating-raices-widget .fr-item:last-child {
	border-bottom: none;
}

#floating-raices-widget .fr-item:hover,
#floating-raices-widget .fr-item:focus {
	background-color: rgba(255, 255, 255, 0.13);
	color: var(--fr-color, #ffffff);
	text-decoration: none !important;
	outline: none;
}

/* Icono wrapper */
#floating-raices-widget .fr-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Dashicons */
#floating-raices-widget .fr-icon .dashicons {
	color: var(--fr-color, #ffffff);
	font-size: 20px;
	width: 20px;
	height: 20px;
	line-height: 20px;
}

/* Icono de texto (ej: 360) */
#floating-raices-widget .fr-text-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 2px solid var(--fr-color, #ffffff);
	border-radius: 50%;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1;
	color: var(--fr-color, #ffffff);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	box-sizing: border-box;
}

/* Etiqueta de texto */
#floating-raices-widget .fr-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--fr-color, #ffffff);
	white-space: nowrap;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.3;
}

/* Ocultar en móvil */
@media (max-width: 767px) {
	#floating-raices-widget.fr-hide-mobile {
		display: none !important;
	}
}
