.cookie-consent-banner {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 1060;
	width: min(920px, calc(100vw - 32px));
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(21, 99, 255, 0.15);
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 16px 18px;
}

.cookie-consent-close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: 0;
	background: transparent;
	color: #94a3b8;
	font-size: 0.95rem;
	line-height: 1;
	padding: 4px;
	cursor: pointer;
}

.cookie-consent-close:hover,
.cookie-consent-close:focus-visible {
	color: #0f172a;
}

.cookie-consent-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cookie-consent-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 52px;
	background: linear-gradient(135deg, #1563ff 0%, #3b82f6 100%);
	color: #fff;
	font-size: 1.35rem;
	box-shadow: 0 12px 24px rgba(21, 99, 255, 0.24);
}

.cookie-consent-text {
	flex: 1 1 auto;
	min-width: 0;
}

.cookie-consent-title {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.cookie-consent-description {
	font-size: 0.93rem;
	color: #475569;
	line-height: 1.45;
}

.cookie-consent-actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.cookie-consent-btn {
	min-width: 112px;
	border-radius: 999px;
	font-weight: 600;
}

.cookie-consent-reject {
	background: #111827;
	border-color: #111827;
}

.cookie-consent-reject:hover,
.cookie-consent-reject:focus-visible {
	background: #000;
	border-color: #000;
}

@media (max-width: 576px) {
	.cookie-consent-banner {
		bottom: 12px;
		padding: 14px;
	}

	.cookie-consent-close {
		top: 8px;
		right: 8px;
	}

	.cookie-consent-content {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-consent-icon {
		align-self: flex-start;
	}

	.cookie-consent-actions {
		width: 100%;
		flex-direction: column;
	}

	.cookie-consent-btn {
		width: 100%;
		min-width: 0;
	}
}
