/* Tillabu Sticky CTA */

.tillabu-sticky-cta {
	position: fixed;
	bottom: 30px;
	width: 320px;
	max-width: calc(100vw - 40px);
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(20, 33, 58, 0.12);
	padding: 22px 24px;
	z-index: 9990;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}

.tillabu-sticky-cta--left {
	left: 20px;
}

.tillabu-sticky-cta--right {
	right: 20px;
}

.tillabu-sticky-cta.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tillabu-sticky-cta[hidden] {
	display: none;
}

.tillabu-sticky-cta__close {
	position: absolute;
	top: 8px;
	right: 10px;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1;
	color: #14213A;
	opacity: 0.5;
	cursor: pointer;
	padding: 4px;
}

.tillabu-sticky-cta__close:hover {
	opacity: 0.9;
}

.tillabu-sticky-cta__heading {
	margin: 0 20px 14px 0;
	color: #14213A;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.3;
}

.tillabu-sticky-cta__benefits {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.tillabu-sticky-cta__benefits li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #2b2f36;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 8px;
}

.tillabu-sticky-cta__benefits li:last-child {
	margin-bottom: 0;
}

.tillabu-sticky-cta__check {
	color: #FFC107;
	font-weight: 700;
	flex-shrink: 0;
}

.tillabu-sticky-cta__divider {
	border-top: 1px solid #E2E5E9;
	margin: 16px 0;
}

.tillabu-sticky-cta__button {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: #FFC107;
	color: #14213A;
	font-weight: 700;
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.tillabu-sticky-cta__button:hover {
	background: #e5ac00;
	color: #14213A;
}

/* Mobile Bottom-Bar */

.tillabu-sticky-cta-mobile {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9990;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: #14213A;
	padding: 12px 16px;
	box-shadow: 0 -4px 16px rgba(20, 33, 58, 0.15);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	box-sizing: border-box;
}

.tillabu-sticky-cta-mobile.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tillabu-sticky-cta-mobile[hidden] {
	display: none;
}

.tillabu-sticky-cta-mobile__text {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	flex: 1;
}

.tillabu-sticky-cta-mobile__button {
	flex-shrink: 0;
	background: #FFC107;
	color: #14213A;
	font-weight: 700;
	font-size: 13px;
	padding: 10px 14px;
	border-radius: 10px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.tillabu-sticky-cta-mobile__button:hover {
	background: #e5ac00;
}

/* Ab 768px: Desktop-Box ausblenden, Mobile-Bar erlauben */
@media (max-width: 768px) {
	.tillabu-sticky-cta {
		display: none !important;
	}
}

/* Ab 769px: Mobile-Bar ausblenden */
@media (min-width: 769px) {
	.tillabu-sticky-cta-mobile {
		display: none !important;
	}
}
