.privacy-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #fff;
	font-size: 12px;
	line-height: 1.35;
	cursor: pointer;
}

.privacy-consent__input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 1px;
	accent-color: #383838;
}

.privacy-consent a,
.cookie-banner a {
	color: inherit;
	text-decoration: underline;
}

.privacy-consent._error {
	outline: 1px solid #ff3b30;
	outline-offset: 5px;
}

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

.cookie-banner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
	width: min(560px, calc(100% - 40px));
	padding: 20px;
	border-radius: 12px;
	background: #383838;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
	color: #fff;
}

.cookie-banner__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cookie-banner__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
}

.cookie-banner__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.cookie-banner__button {
	padding: 10px 14px;
	border-radius: 6px;
	font: inherit;
	font-size: 13px;
	white-space: nowrap;
}

.cookie-banner__button--accept {
	background: #ee7203;
	color: #fff;
}

.cookie-banner__button--reject {
	background: #fff;
	color: #383838;
}

@media (max-width: 600px) {
	.cookie-banner__content {
		align-items: stretch;
		flex-direction: column;
		gap: 15px;
	}

	.cookie-banner__actions {
		justify-content: flex-end;
	}
}

.legal-page {
	min-height: 100vh;
	padding: 40px 20px;
	background: #f8f8f8;
	color: #383838;
}

.legal-footer {
	display: flex;
	justify-content: center;
	gap: 25px;
	padding: 20px;
	background: #fff;
	font-size: 13px;
}

.legal-footer a {
	color: #383838;
	text-decoration: underline;
}

.legal-footer a:hover {
	color: #ee7203;
}

.legal-page__container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.legal-page h1 {
	margin: 25px 0;
	font-size: 32px;
	font-weight: 700;
}

.legal-page h2 {
	margin: 25px 0 10px;
	font-size: 20px;
	font-weight: 700;
}

.legal-page p {
	margin: 0 0 15px;
	font-size: 16px;
	line-height: 1.6;
}

.legal-page__back {
	color: #ee7203;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.legal-footer {
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}

	.legal-page {
		padding: 20px 12px;
	}

	.legal-page__container {
		padding: 25px 20px;
	}

	.legal-page h1 {
		font-size: 26px;
	}
}
