/* Баннер согласия на использование cookie (RKN) */
.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999999;
	background: #1a1a1a;
	color: #eee;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	line-height: 1.5;
}

.cookie-consent-banner[hidden] {
	display: none !important;
}

.cookie-consent-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cookie-consent-banner__text {
	margin: 0;
	flex: 1 1 280px;
}

.cookie-consent-banner__text a {
	color: #7cb8e8;
	text-decoration: underline;
}

.cookie-consent-banner__text a:hover {
	color: #9dd4ff;
}

.cookie-consent-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.cookie-consent-banner__link-button {
	display: inline-block;
	padding: 8px 14px;
	color: #7cb8e8;
	text-decoration: none;
	border: 1px solid #5a9bc7;
	border-radius: 4px;
	background: transparent;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.cookie-consent-banner__link-button:hover {
	color: #9dd4ff;
	border-color: #7cb8e8;
	background: rgba(124, 184, 232, 0.1);
}

.cookie-consent-banner__accept {
	display: inline-block;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	background: #f0f0f0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.cookie-consent-banner__accept:hover {
	background: #fff;
	color: #333;
}

@media (max-width: 640px) {
	.cookie-consent-banner__inner {
		padding: 12px 16px;
	}
	.cookie-consent-banner__actions {
		width: 100%;
		justify-content: flex-end;
	}
}
