/* Баннер согласия на cookies (разметка из core/user/js/cookie.user.js) */
.cookie-agreement {
	box-sizing: border-box;
	position: fixed;
	z-index: 100000;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 12px 16px;
	background: var(--white, #fff);
	border-top: 1px solid var(--line, #B4B4B4);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.cookie-agreement__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 20px;
	text-align: center;
}

.cookie-agreement__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--text, #1a1a1a);
	flex: 1 1 280px;
}

.cookie-agreement__actions {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 16px;
}

.cookie-agreement__link {
	white-space: nowrap;
}

.cookie-agreement__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 0 8px;
	font-size: 20px;
	line-height: 1;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.15s ease;
}

.cookie-agreement__close:hover {
	background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 575px) {
	.cookie-agreement {
		padding: 10px 12px;
	}

	.cookie-agreement__text {
		font-size: 13px;
	}
}
