#cookie-consent-banner {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1000;
	max-width: 760px;
	margin: 0 auto;
	padding: 1rem 1.1rem;
	background: #111827;
	color: #f9fafb;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

#cookie-consent-banner.is-hidden {
	display: none;
}

.cookie-consent-content {
	display: flex;
	gap: 0.9rem;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

#cookie-consent-text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	max-width: 520px;
}

.cookie-consent-actions {
	display: flex;
	gap: 0.6rem;
	align-items: center;
}

.cookie-consent-btn {
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	color: #f9fafb;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 9px;
	padding: 0.55rem 0.85rem;
	cursor: pointer;
}

.cookie-consent-btn:hover,
.cookie-consent-btn:focus-visible {
	outline: none;
	border-color: rgba(255, 255, 255, 0.4);
}

.cookie-consent-btn.accept {
	background: #f97316;
	border-color: #f97316;
	color: #111827;
}

.cookie-consent-btn.accept:hover,
.cookie-consent-btn.accept:focus-visible {
	background: #fb923c;
	border-color: #fb923c;
}

@media (max-width: 640px) {
	#cookie-consent-banner {
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.75rem;
		padding: 0.85rem 0.9rem;
	}

	#cookie-consent-text {
		font-size: 0.9rem;
	}

	.cookie-consent-actions {
		width: 100%;
	}

	.cookie-consent-btn {
		flex: 1;
		text-align: center;
	}
}
