/* DTB Cookie Consent banner — mirrors the theme design tokens. */
.cookie {
	position: fixed;
	left: 50%;
	bottom: 18px;
	z-index: 180;
	width: min(760px, calc(100vw - 28px));
	transform: translateX(-50%);
	animation: dtb-cookie-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	.cookie {
		animation: none;
	}
}

@keyframes dtb-cookie-in {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.cookie-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 18px 22px;
	background: var(--surface, #272725);
	border: 1px solid var(--border-strong, rgba(255, 255, 255, 0.17));
	border-radius: var(--radius, 14px);
	box-shadow: var(--shadow, 0 24px 60px -24px rgba(0, 0, 0, 0.6));
}

.cookie-text h4 {
	margin: 0 0 5px;
	font-family: var(--font-head, "Quicksand", sans-serif);
	font-size: 15px;
}

.cookie-text p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--muted, #b4b2ac);
}

.cookie-text a {
	color: var(--accent, #f4a261);
}

.cookie-text a:hover {
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	flex: none;
	gap: 10px;
}

.cookie-actions .btn {
	padding: 11px 17px;
	font-size: 14px;
}

@media (max-width: 660px) {
	.cookie {
		bottom: 12px;
	}

	.cookie-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 18px;
	}

	.cookie-actions {
		flex-direction: column;
	}

	.cookie-actions .btn {
		flex: 1;
		justify-content: center;
	}
}
