/*
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #f8f8f8;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-consent.hide {
	transform: translateY(100%);
}

.cookie-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
}

.cookie-text {
	flex: 1;
	color: #333;
	line-height: 1.6;
	font-size: 14px;
}

.cookie-text a {
	color: #333;
	text-decoration: underline;
	transition: color 0.2s;
}

.cookie-text a:hover {
	color: #d81b60;
}

.cookie-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.btn {
	padding: 12px 32px;
	border: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-accept {
	background: #d81b60;
	color: white;
	border-radius: 20px;
}

.btn-accept:hover {
	background: #c2185b;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
}

.btn-decline {
	background: transparent;
	color: #666;
	border: 2px solid #ddd;
	border-radius: 20px;
}

.btn-decline:hover {
	background: #f5f5f5;
	border-color: #bbb;
}

!* Модальное окно политики *!
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	backdrop-filter: blur(4px);
}

.modal.show {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: 16px;
	max-width: 700px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.modal-header h2 {
	color: #333;
	font-size: 1.8rem;
}

.modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	color: #999;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s;
}

.modal-close:hover {
	background: #f3f4f6;
	color: #333;
}

.modal-body {
	color: #555;
	line-height: 1.8;
}

.modal-body h3 {
	color: #333;
	margin-top: 24px;
	margin-bottom: 12px;
}

.modal-body p {
	margin-bottom: 16px;
}

@media (max-width: 768px) {
	.cookie-container {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}

	.btn {
		flex: 1;
		min-width: 120px;
	}

	.modal-content {
		padding: 24px;
	}
}*/

.demo-content {
	text-align: center;
	color: white;
	margin-bottom: 100px;
}

.demo-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.demo-content p {
	font-size: 1.2rem;
	opacity: 0.9;
}

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 16px 20px;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-consent.hide {
	transform: translateY(100%);
}

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

.cookie-text {
	flex: 1;
	color: #333;
	line-height: 1.5;
	font-size: 14px;
}

.cookie-text a {
	color: #2196F3;
	text-decoration: none;
	transition: color 0.2s;
	pointer-events: auto !important;
}

.cookie-text a:hover {
	color: #1976D2;
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-shrink: 0;
}

.checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #2196F3;
}

.checkbox-wrapper label {
	font-size: 13px;
	color: #333;
	cursor: pointer;
	white-space: nowrap;
}

.btn {
	padding: 10px 24px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;

}
.btn-text {
	color: white;
}
.btn-accept {
	background: #2196F3;
	color: white;
}

.btn-accept:disabled {
	cursor: not-allowed;
}

.btn-accept:hover {
	background: #1976D2;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	backdrop-filter: blur(4px);
}

.modal.show {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: 12px;
	max-width: 800px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
	color: #333;
	font-size: 1.8rem;
}

.modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	color: #999;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s;
}

.modal-close:hover {
	background: #f3f4f6;
	color: #333;
}

.modal-body {
	color: #555;
	line-height: 1.8;
}

.modal-body h3 {
	color: #333;
	margin-top: 24px;
	margin-bottom: 12px;
	font-size: 1.3rem;
}

.modal-body p {
	margin-bottom: 16px;
}

.modal-body ul {
	margin-left: 20px;
	margin-bottom: 16px;
}

.modal-body li {
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.cookie-container {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-actions {
		justify-content: space-between;
		width: 100%;
	}

	.btn {
		flex: 1;
	}

	.modal-content {
		padding: 24px;
	}

	.demo-content h1 {
		font-size: 1.8rem;
	}
}