/* Баннер согласия на файлы cookie — xen.travel */

.xt-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: #ffffff;
	box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.18);
	transform: translateY(100%);
	transition: transform 0.25s ease;
	font-family: 'Proxima Nova', Arial, sans-serif;
}

.xt-cookie.is-visible {
	transform: translateY(0);
}

.xt-cookie__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.xt-cookie__text {
	flex: 1 1 auto;
	color: #2b2b2b;
	font-size: 14px;
	line-height: 1.45;
}

.xt-cookie__text strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	font-weight: 600;
}

.xt-cookie__text p {
	margin: 0;
}

.xt-cookie__text a {
	color: #C7A165;
	text-decoration: underline;
}

.xt-cookie__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
}

.xt-cookie__btn {
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #C7A165;
	border-radius: 4px;
	padding: 11px 22px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}

.xt-cookie__btn--accent {
	background: #C7A165;
	color: #ffffff;
}

.xt-cookie__btn--accent:hover {
	background: #b38f57;
	border-color: #b38f57;
}

.xt-cookie__btn--ghost {
	background: transparent;
	color: #7a6435;
}

.xt-cookie__btn--ghost:hover {
	background: #f5efe3;
}

.xt-cookie-settings {
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

@media (max-width: 860px) {
	.xt-cookie__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px;
	}

	.xt-cookie__actions {
		flex-direction: column-reverse;
	}

	.xt-cookie__btn {
		width: 100%;
		padding: 13px 18px;
	}
}
