/* CP Push — soft-prompt lišta (tokeny témy Planétky s fallbackmi). */
.cp-push-bar {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 560px;
	margin: 0 auto;
	padding: 14px 16px;
	background: var(--cp-surface, #fff);
	border: 1px solid var(--cp-border, rgba(0, 0, 0, .08));
	border-radius: 16px;
	box-shadow: var(--cp-shadow-pop, 0 24px 50px rgba(0, 0, 0, .18));
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .3s ease, transform .3s cubic-bezier(.2, .7, .3, 1);
}

.cp-push-bar.is-in {
	opacity: 1;
	transform: translateY(0);
}

.cp-push-bar__ico {
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--cp-hero-btn, linear-gradient(135deg, #FF5A4D, #C2261C));
}

.cp-push-bar__txt {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cp-push-bar__txt strong {
	font-family: var(--cp-font-disp, inherit);
	font-size: 13.5px;
	font-weight: 800;
	color: var(--cp-text, #1a1a1a);
	line-height: 1.25;
}

.cp-push-bar__txt em {
	font-style: normal;
	font-size: 12px;
	line-height: 1.4;
	color: var(--cp-soft, #5e5e5e);
}

.cp-push-bar__btns {
	flex: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cp-push-bar__ok,
.cp-push-bar__no {
	font-family: var(--cp-font-disp, inherit);
	font-size: 12px;
	font-weight: 800;
	border-radius: 9px;
	padding: 9px 14px;
	cursor: pointer;
	border: 0;
}

.cp-push-bar__ok {
	color: #fff;
	background: var(--cp-hero-btn, linear-gradient(135deg, #FF5A4D, #C2261C));
}

.cp-push-bar__no {
	color: var(--cp-soft, #5e5e5e);
	background: var(--cp-chip, #f1efeb);
}

@media (max-width: 480px) {
	.cp-push-bar {
		flex-wrap: wrap;
	}

	.cp-push-bar__txt {
		flex: 1 1 calc(100% - 50px);
	}

	.cp-push-bar__btns {
		flex: 1 1 100%;
		flex-direction: row;
	}

	.cp-push-bar__ok,
	.cp-push-bar__no {
		flex: 1;
	}
}
