.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	color: #d9dfe2;
	padding: 0;
	box-shadow: 0 -8px 32px rgba(217, 0, 44, 0.4);
	z-index: 99999;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.7s ease;
	border-top: 2px solid #D9002C;
	overflow: hidden;
}

.cookie-notice::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #D9002C, transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.cookie-notice.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-notice-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 25px;
	padding: 25px 20px;
	position: relative;
}

.cookie-icon-wrapper {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cookie-icon-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(217, 0, 44, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.2); opacity: 0.8; }
}

.cookie-icon {
	position: relative;
	z-index: 2;
	width: 100px;
	height: 100px;
}

.cookie-icon svg {
	width: 100%;
	height: 100%;
	fill: #D9002C;
	filter: drop-shadow(0 0 12px rgba(217, 0, 44, 0.8));
	//animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.cookie-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cookie-content h3 {
	margin: 0;
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cookie-content h3::after {
	content: '';
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, #D9002C, transparent);
}

.cookie-text {
	margin: 0;
	color: #d9dfe2;
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.9;
}

.cookie-links {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 5px;
}

.cookie-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #D9002C;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
	border: 1px solid rgba(217, 0, 44, 0.3);
	border-radius: 20px;
	transition: all 0.3s ease;
	background: rgba(217, 0, 44, 0.05);
}

.cookie-link:hover {
	background: rgba(217, 0, 44, 0.15);
	border-color: #D9002C;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(217, 0, 44, 0.3);
}

.cookie-link svg {
	width: 14px;
	height: 14px;
	fill: #D9002C;
}

.cookie-button {
	background: linear-gradient(135deg, #D9002C 0%, #ff1a47 100%);
	color: #ffffff;
	border: none;
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.4s ease;
	box-shadow: 0 6px 20px rgba(217, 0, 44, 0.5);
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

.cookie-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.cookie-button:hover::before {
	width: 300px;
	height: 300px;
}

.cookie-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(217, 0, 44, 0.7);
}

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

.cookie-button span {
	position: relative;
	z-index: 1;
}

.cookie-particles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.1;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #D9002C;
	border-radius: 50%;
	animation: float 15s infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; animation-delay: 6s; animation-duration: 12s; }
.particle:nth-child(4) { left: 60%; animation-delay: 2s; animation-duration: 16s; }
.particle:nth-child(5) { left: 75%; animation-delay: 8s; animation-duration: 14s; }
.particle:nth-child(6) { left: 90%; animation-delay: 4s; animation-duration: 20s; }

@media (max-width: 968px) {
	.cookie-notice-container {
		grid-template-columns: auto 1fr;
		gap: 20px;
	}

	.cookie-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.cookie-notice-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 15px;
		padding: 20px 15px;
	}

	.cookie-icon-wrapper {
		margin: 0 auto;
		width: 50px;
		height: 50px;
	}

	.cookie-icon {
		width: 100px;
		height: 100px;
	}

	.cookie-content h3 {
		font-size: 18px;
		justify-content: center;
	}

	.cookie-content h3::after {
		display: none;
	}

	.cookie-text {
		font-size: 13px;
	}

	.cookie-links {
		justify-content: center;
	}

	.cookie-button {
		padding: 14px 30px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.cookie-notice-container {
		padding: 15px 12px;
	}

	.cookie-content h3 {
		font-size: 16px;
	}

	.cookie-text {
		font-size: 12px;
	}

	.cookie-links {
		flex-direction: column;
		gap: 8px;
	}

	.cookie-link {
		justify-content: center;
	}
}