/* ── sticky-cta.css — mobile Sticky-Leiste, erscheint nach Scroll ────────── */

.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 0.75rem 1rem;
	background: var(--c-bg);
	border-top: 0.0625rem solid var(--c-divider);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(100%);
	transition: transform 0.2s;
}

.sticky-cta--visible {
	transform: none;
}

.sticky-cta .btn {
	display: block;
	text-align: center;
}

@media (min-width: 48rem) {
	.sticky-cta {
		display: none;
	}
}
