/**
 * Çerez rıza bannerı — tokenlar tailwind.config.js'deki renklerle birebir
 * aynı (navy #0A192F, ink #111111, muted #686868, surface.card #FFFFFF,
 * border #D1D5DB). Bilerek Tailwind derlemesinden bağımsız, tek başına
 * dosya — build pipeline'ına dokunmadan deploy edilebilsin diye.
 */

.njf-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: #FFFFFF;
	border-top: 1px solid #D1D5DB;
	box-shadow: 0 -4px 16px rgba(10, 25, 47, 0.12);
	padding: 16px;
}

.njf-consent-banner[hidden] {
	display: none;
}

.njf-consent-banner__inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.njf-consent-banner__text {
	margin: 0;
	flex: 1 1 420px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #111111;
}

.njf-consent-banner__text a {
	color: #0A192F;
	text-decoration: underline;
}

.njf-consent-banner__actions {
	display: flex;
	gap: 12px;
	flex: 0 0 auto;
}

.njf-consent-btn {
	font-size: 0.875rem;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}

.njf-consent-btn--primary {
	background: #0A192F;
	color: #FFFFFF;
}

.njf-consent-btn--primary:hover {
	background: #16283F;
}

.njf-consent-btn--secondary {
	background: #FFFFFF;
	color: #111111;
	border-color: #D1D5DB;
}

.njf-consent-btn--secondary:hover {
	background: #F8F9FA;
}

.njf-consent-footer-link {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	color: inherit;
}

@media (max-width: 640px) {
	.njf-consent-banner__inner {
		flex-direction: column;
		align-items: stretch;
	}
	.njf-consent-banner__actions {
		justify-content: stretch;
	}
	.njf-consent-btn {
		flex: 1 1 0;
		text-align: center;
	}
}
