.cookie-circle {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	padding: 0;
	background: url('/assets/cookie.png') center center / cover;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	z-index: 1000;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-circle:hover,
.cookie-circle:focus-visible {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	outline: none;
}

.cookie-circle.blink { animation: cookieBlink 1s ease-in-out; }

@keyframes cookieBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.cookie-text {
	position: absolute;
	right: 0;
	bottom: 70px;
	padding: 8px 12px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 6px;
	color: #fff;
	font: 12px/1.2 "Plus Jakarta Sans", sans-serif;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.cookie-circle:hover .cookie-text,
.cookie-circle:focus-visible .cookie-text {
	opacity: 1;
	transform: translateY(0);
}

.cookie-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.7);
	z-index: 2000;
}

.cookie-modal.show { display: flex; }

.cookie-modal-content {
	--cookie-green: #218f0e;
	--cookie-green-dark: #1b7d0b;
	width: min(500px, 100%);
	max-height: 80vh;
	overflow-y: auto;
	padding: 30px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	color: #1f2937;
}

.cookie-modal h2 { margin: 0 0 20px; font-size: 24px; }

.cookie-modal-intro {
	margin: 0 0 20px;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.5;
}

.cookie-modal-intro a { color: #2563eb; text-decoration: underline; }

.cookie-option {
	margin-bottom: 20px;
	padding: 15px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

.cookie-option h3 { margin: 0 0 10px; color: #374151; font-size: 16px; }

.cookie-option p {
	margin: 0 0 10px;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.4;
}

.cookie-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #374151;
	font-size: 14px;
}

.cookie-toggle input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--cookie-green-dark);
}

.cookie-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 30px;
}

.cookie-btn {
	padding: 12px 24px;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	font: 600 14px/1.2 "Plus Jakarta Sans", sans-serif;
	transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible { transform: translateY(-1px); outline: none; }
.cookie-btn-secondary {
	border: 1px solid #b9dfb1;
	background: #eef8eb;
	color: #17630e;
}
.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus-visible { background: #dff2da; }
.cookie-btn-primary {
	border: 1px solid var(--cookie-green-dark);
	background: var(--cookie-green);
	color: #071004;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible {
	background: var(--cookie-green-dark);
}

@media (max-width: 768px) {
	.cookie-circle { bottom: 15px; right: 15px; width: 50px; height: 50px; }
	.cookie-text { bottom: 60px; font-size: 11px; }
	.cookie-modal-content { padding: 20px; }
	.cookie-buttons { flex-direction: column; }
	.cookie-btn { width: 100%; }
}
