.footer {
	background: #0b1014;
	color: #e5e7eb;
	padding-top: var(--space-40);
	padding-bottom: var(--space-32);
	margin-top: var(--space-48);
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1.2fr;
	gap: var(--space-32);
	margin-bottom: var(--space-24);
}
.footer-brand-title {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	margin-bottom: var(--space-8);
}
.footer-brand-text {
	font-size: 0.9rem;
	color: #9ca3af;
	max-width: 24rem;
}
.footer-badge-row {
	margin-top: var(--space-16);
}
.footer-nav-title {
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #9ca3af;
	margin-bottom: var(--space-12);
}
.footer-link {
	display: block;
	font-size: 0.9rem;
	color: #e5e7eb;
	margin-bottom: 6px;
	opacity: 0.85;
	transition:
		opacity var(--transition-base),
		transform var(--transition-base);
}
.footer-link:hover {
	opacity: 1;
	transform: translateX(2px);
}
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-16);
	padding-top: var(--space-16);
	border-top: 1px solid rgba(31, 41, 55, 0.9);
	font-size: 0.78rem;
	color: #6b7280;
}
.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-16);
}
.footer-legal a {
	color: #9ca3af;
}
.disclaimer {
	font-size: 0.78rem;
	line-height: 1.6;
	color: #9ca3af;
	margin-top: var(--space-24);
	max-width: 54rem;
}
.disclaimer strong {
	color: #e5e7eb;
}
.pill-disclaimer {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(55, 65, 81, 0.8);
	background: rgba(17, 24, 39, 0.9);
	font-size: 0.72rem;
	color: #d1d5db;
}
.pill-disclaimer-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #fbbf24;
}
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	background: rgba(15, 23, 42, 0.98);
	color: #e5e7eb;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition:
		transform var(--transition-slow),
		opacity var(--transition-slow);
}
.cookie-banner.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.cookie-banner-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-24);
	padding-top: var(--space-16);
	padding-bottom: var(--space-16);
}
.cookie-banner-title {
	font-size: 0.95rem;
	margin-bottom: var(--space-8);
	color: #f9fafb;
}
.cookie-banner-description {
	font-size: 0.85rem;
	color: #d1d5db;
	margin-bottom: var(--space-8);
}
.cookie-banner-note {
	font-size: 0.78rem;
	color: #9ca3af;
}
.cookie-banner-note a {
	color: #e5e7eb;
}
.cookie-banner-actions {
	display: flex;
	flex-shrink: 0;
	gap: var(--space-12);
	align-items: center;
}
.cookie-btn-decline {
	font-size: 0.78rem;
    color: #fff !important; 
	padding: 0.7rem 1.2rem;
}
.cookie-btn-accept {
	font-size: 0.78rem;
	padding: 0.7rem 1.5rem;
}
.cookie-banner[hidden] {
	display: none;
}
@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1.5fr 1fr;
	}
	.cookie-banner-inner {
		flex-direction: column;
		align-items: stretch;
	}
}
@media (max-width: 768px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
	.disclaimer {
		font-size: 0.75rem;
	}
	.cookie-banner-inner {
		padding-inline: var(--space-16);
	}
	.cookie-banner-actions {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.cookie-btn-decline,
	.cookie-btn-accept {
		width: 100%;
		justify-content: center;
	}
}
