.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #414260;
	color: #fff;
	z-index: 9999;
	padding: 14px 16px;
	display: none;
}
.cookie-consent__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.cookie-consent__text {
	margin: 0;
	font-size: 14px;
	opacity: 0.95;
}
.cookie-consent__actions {
	display: flex;
	gap: 10px;
}
.cookie-btn {
	background: linear-gradient(270deg, #FFD6D6 0%, #9B72B5 100%);
	color: #fff;
	border: none;
	padding: 10px 16px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 600;
}
.cookie-btn--secondary {
	background: transparent;
	border: 1px solid #fff;
}
.cookie-btn--secondary:hover {
	background: #fff;
}

.cookie-consent a {
	color: #c097c1; text-decoration: underline; 
}



@media screen and (max-width: 650px) {
	.cookie-consent__inner {
		justify-content: center;
	}
	.cookie-consent__text {
		text-align: center;
	}
}