/* CSS Document */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	/*background: var(--bg);*/
	background-color: #8d7fd4;
	border-top: 1px solid var(--border);
	padding: 16px;
	/*box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);*/
	transform: translateY(100%);
	transition: transform 0.3s;
}
.cookie-banner.show {
	transform: translateY(0);
}
.cookie-content {
	/*max-width: 1100px;*/
	width: 100%;
	margin: 0 auto;
	color: var(--text);
	font-size: 14px;
	text-align: center;
}
.cookie-text {
	margin-bottom: 12px;
	line-height: 1.4;
}
.cookie-text a {
	color: var(--primary);
}
.cookie-options {
	display: flex;
	gap: 12px;
	margin: 12px 0;
	flex-wrap: wrap;
	justify-content: center;
}
.cookie-options label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
}
.cookie-options input {
	width: 16px;
	height: 16px;
}
.cookie-buttons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.btn {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	background-color: #f4f2ff;
}
.btn-primary {
	color: #33257a;
}
.btn-secondary {
	color: #8d7fd4;
}
@media (max-width: 640px) {
	.btn {
		flex: 1;
	}
}