/* Alexander Connect Bar - minimal, fast, no dependencies */
.acb-wrap{
	position: fixed;
	bottom: 18px;
	z-index: 99999;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.acb-right{ right: 18px; }
.acb-left{ left: 18px; }

.acb-toggle{
	display:flex;
	align-items:center;
	gap:10px;
	border:0;
	border-radius: 999px;
	padding: 10px 12px;
	cursor:pointer;
	box-shadow: 0 10px 30px rgba(0,0,0,.18);
	background:#111;
	color:#fff;
}
.acb-dot{
	width:10px;height:10px;border-radius:99px;background:#00d084;
	display:inline-block;
	box-shadow: 0 0 0 6px rgba(0,208,132,.15);
}
.acb-label{ font-weight: 650; font-size: 14px; letter-spacing: .2px; }

.acb-panel{
	margin-top: 10px;
	width: 300px;
	border-radius: 18px;
	padding: 12px;
	box-shadow: 0 18px 50px rgba(0,0,0,.22);
	background:#fff;
	color:#111;
}
.acb-title{
	font-weight: 800;
	font-size: 14px;
	margin: 2px 2px 10px;
}
.acb-subtitle{
	font-size: 12px;
	color:#444;
	margin: 10px 2px 8px;
	line-height: 1.25;
}
.acb-btn{
	display:flex;
	align-items:center;
	gap:10px;
	text-decoration:none;
	border-radius: 12px;
	padding: 10px 10px;
	margin: 8px 0;
	border: 1px solid rgba(0,0,0,.08);
	background: #fafafa;
	color:#111;
}
.acb-btn:hover{ background:#f2f2f2; }
.acb-ico{ width: 22px; text-align:center; }

.acb-note{
	font-size: 12px;
	color:#555;
	margin-top: 10px;
	line-height:1.3;
}

@media (max-width: 560px){
	.acb-panel{ width: 92vw; max-width: 360px; }
}
