/* B2 Legal Baseline — cookie banner + footer links (no framework dependency) */

.b2lb-banner {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999999;
	background: #1a1a1a;
	color: #f2f2f2;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 0 24px rgba(0,0,0,0.25);
	transform: translateY(110%);
	transition: transform 0.35s ease;
}
.b2lb-banner.b2lb-visible { transform: translateY(0); }
.b2lb-banner--bottom { bottom: 0; }
.b2lb-banner--top { top: 0; transform: translateY(-110%); }
.b2lb-banner--top.b2lb-visible { transform: translateY(0); }

.b2lb-banner--bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 24px;
}

.b2lb-banner--corner {
	max-width: 380px;
	left: auto;
	right: 16px;
	bottom: 16px !important;
	top: auto !important;
	border-radius: 10px;
	padding: 18px;
}

.b2lb-banner__text { flex: 1 1 420px; margin: 0; }
.b2lb-banner__text a { color: #9fd3ff; text-decoration: underline; }

.b2lb-banner__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.b2lb-banner__btn {
	appearance: none;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 9px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.b2lb-banner__btn--accept {
	background: #ffffff;
	color: #111;
}
.b2lb-banner__btn--accept:hover { background: #e6e6e6; }
.b2lb-banner__btn--decline {
	background: transparent;
	color: #f2f2f2;
	border-color: #666;
}
.b2lb-banner__btn--decline:hover { border-color: #999; }

.b2lb-legal-links {
	display: block;
	text-align: center;
	padding: 14px 16px;
	font-size: 13px;
	color: #666;
}
.b2lb-legal-links a { color: inherit; text-decoration: underline; }

.b2lb-manage-cookies-link {
	background: none;
	border: none;
	padding: 0;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
	font: inherit;
}

@media (max-width: 600px) {
	.b2lb-banner--bar { padding: 14px 16px; }
	.b2lb-banner__actions { width: 100%; }
	.b2lb-banner__btn { flex: 1 1 auto; }
}
