/* Cookie policy page */
.vs-cookie-policy {
	padding: 110px 0 50px;
}

.vs-cookie-policy__updated {
	margin: 0 0 20px;
	font-size: 13px;
	color: #888;
}

.vs-cookie-policy h2 {
	margin: 28px 0 12px;
	font-size: 22px;
	color: #333;
}

.vs-cookie-policy h2:first-of-type {
	margin-top: 0;
}

.vs-cookie-policy p,
.vs-cookie-policy li {
	line-height: 1.65;
	color: #444;
}

.vs-cookie-policy ul {
	margin: 0 0 16px;
	padding-left: 1.2em;
}

.vs-cookie-policy li + li {
	margin-top: 8px;
}

/* Cookie consent banner — dark floating card (as mouoslog.ru) */
body.vs-cookie-banner-visible {
	padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
}

.vs-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	padding: 0 16px calc(20px + env(safe-area-inset-bottom, 0px));
	background: transparent;
	border: 0;
	box-shadow: none;
	pointer-events: none;
	transform: translateY(calc(100% + 28px));
	opacity: 0;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.vs-cookie-banner.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.vs-cookie-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1170px;
	margin: 0 auto;
	padding: 18px 22px;
	border-radius: 16px;
	background: #0f172a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 24px 60px rgba(15, 23, 42, 0.42),
		0 10px 24px rgba(0, 0, 0, 0.22);
	pointer-events: auto;
}

.vs-cookie-banner__text {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.vs-cookie-banner__text a {
	color: #fff;
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.55);
	text-underline-offset: 3px;
}

.vs-cookie-banner__text a:hover {
	text-decoration-color: #fff;
	opacity: 0.92;
}

.vs-cookie-banner__btn {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 24px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(99, 102, 241, 0.38);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vs-cookie-banner__btn:hover {
	filter: brightness(1.08);
	box-shadow: 0 10px 28px rgba(99, 102, 241, 0.48);
}

.vs-cookie-banner__btn:active {
	transform: translateY(1px);
}

@media (max-width: 768px) {
	body.vs-cookie-banner-visible {
		padding-bottom: calc(168px + env(safe-area-inset-bottom, 0px));
	}

	.vs-cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px 18px;
		border-radius: 14px;
	}

	.vs-cookie-banner__text {
		font-size: 13px;
		line-height: 1.55;
	}

	.vs-cookie-banner__btn {
		width: 100%;
		min-height: 44px;
	}
}
