/* ------------------ Sticky Bottom Bar ------------------ */
#stickyBottomBar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none; /* appare con lo scroll */
	background: #181b31;
	color: #fff;
	margin:0;
	padding: 20px 16px;
	box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

#stickyBottomBar .w3-row {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

#stickyBottomBar h3 {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.3;
	color: #fff;
}

#stickyBottomBar .cta {
	margin: 0;
	padding: 16px 18px;
	background: #de1e63;
	color: #fff;
	font-weight: bold;
	border-radius: 25px;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
}

#stickyBottomBar .cta:hover {
	background: #de1e63;
}
