/* Botón "volver arriba" — alineado con theme.css (mismo estilo en preview y Joomla) */
#toTop {
	display: none; /* totop.js lo muestra al hacer scroll */
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 500;
	font-family: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
	font-size: 12px;
	letter-spacing: .04em;
	color: #fff;
	background: #1668B0;
	padding: 10px 14px;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(11,34,57,.05), 0 12px 34px rgba(11,34,57,.08);
	transition: background .15s cubic-bezier(.22,.61,.36,1), transform .15s cubic-bezier(.22,.61,.36,1);
}
#toTop:hover {
	background: #10508C;
	transform: translateY(-2px);
}
