/* KVKK cookie-consent banner (inc/cookie-consent.php). Tokens-driven. */
.at-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	background: var(--at-surface);
	border-top: 1px solid var(--at-border);
	box-shadow: 0 -8px 24px rgba(28, 26, 23, .08);
	transform: translateY(0);
	transition: transform .3s ease, opacity .3s ease;
}
.at-consent[hidden] { display: none; }
.at-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--at-space-6);
	padding-block: var(--at-space-4);
}
.at-consent__text {
	margin: 0;
	font-size: var(--at-fs-200);
	color: var(--at-text-muted);
	max-width: 72ch;
}
.at-consent__text a {
	color: var(--at-accent);
	font-weight: 600;
	text-decoration: none;
}
.at-consent__text a:hover { color: var(--at-accent-hover); }
.at-consent__actions {
	display: flex;
	align-items: center;
	gap: var(--at-space-3);
	flex: none;
}
.at-consent__btn { font-size: var(--at-fs-100); padding: var(--at-space-2) var(--at-space-4); }

@media (max-width: 782px) {
	.at-consent__inner { flex-direction: column; align-items: stretch; text-align: center; }
	.at-consent__actions { justify-content: center; }
}
