/* Cookie-Hinweis (Gäste) */
#cookie-consent-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	display: none;
	padding: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
}

#cookie-consent-bar.is-visible {
	display: block;
}

#cookie-consent-bar .cookie-consent-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1rem 1.25rem;
	background: #1a1a1a;
	color: #f0f0f0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	justify-content: space-between;
}

#cookie-consent-bar .cookie-consent-text {
	flex: 1 1 280px;
	margin: 0;
}

#cookie-consent-bar .cookie-consent-text a {
	color: #ffb3b3;
	text-decoration: underline;
}

#cookie-consent-bar .cookie-consent-text a:hover {
	color: #fff;
}

#cookie-consent-bar .cookie-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

#cookie-consent-bar button {
	cursor: pointer;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	border: none;
	transition: background 0.2s, color 0.2s;
}

#cookie-consent-bar .cookie-btn-necessary {
	background: transparent;
	color: #ccc;
	border: 1px solid #555;
}

#cookie-consent-bar .cookie-btn-necessary:hover {
	background: #333;
	color: #fff;
}

#cookie-consent-bar .cookie-btn-accept {
	background: #b30000;
	color: #fff;
}

#cookie-consent-bar .cookie-btn-accept:hover {
	background: #e60000;
}

body.cookie-banner-open #imprint {
	padding-bottom: 5rem;
}
