/* Cookie Consent Banner Styles */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999999;
	background: #333;
	color: #fff;
	padding: 15px 0;
	display: none;
	font-family: Tahoma, serif;
	box-sizing: border-box;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: center; /* Центрируем по горизонтали */
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center; /* Центрируем текст */

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 15px;
	}
}

.cookie-consent__text {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	text-align: center; /* Центрируем текст */

	@media (max-width: 480px) {
		font-size: 12px;
	}
}

.cookie-consent__link {
	color: #4da6ff;
	text-decoration: underline;
	white-space: nowrap; /* Запрещаем перенос ссылки */

	&:hover {
		color: #70b9ff;
		text-decoration: none;
	}
}

.cookie-consent__button {
	.input-submit-style;
	margin-left: 20px;
	flex-shrink: 0;
	min-width: 100px;

	@media (max-width: 768px) {
		margin-left: 0;
		margin-top: 10px;
	}

	&:hover {
		background: #005aaa;
	}

	&:focus {
		background: #005aaa;
	}
}

/* Для очень маленьких экранов - улучшаем читаемость */
@media (max-width: 380px) {
	.cookie-consent__inner {
		padding: 0 10px;
	}

	.cookie-consent__text {
		font-size: 11px;
		line-height: 1.3;
	}

	.cookie-consent__button {
		min-width: 80px;
		padding: 5px 10px;
		font-size: 12px;
	}
}
