#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 999;
	background-color: #2d0806;
	color: #e6e6e6;
	padding: 16px 20px;
	box-shadow: 0 -2px 8px rgba(0,0,0,0.4);
	font-size: .9em;
	border-top: 2px solid #510806;
}

#cookie-consent-banner.is-visible {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

#cookie-consent-banner p { margin: 0; max-width: 640px; }

#cookie-consent-banner .cookie-consent-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

#cookie-consent-banner button {
	font-family: inherit;
	font-size: 1em;
	cursor: pointer;
	border-radius: 4px;
	padding: 8px 18px;
	border: 1px solid #e6e6e6;
}

#cookie-consent-accept { background-color: #e6e6e6; color: #2d0806; font-weight: 700; }
#cookie-consent-decline { background-color: transparent; color: #e6e6e6; }

#cookie-consent-preferences { color: #FFFF00; font-size: .85em; }

@media screen and (max-width: 600px) {
	#cookie-consent-banner.is-visible { flex-direction: column; text-align: center; }
}
