.infozet-cookie-consent {
	--icz-accent: #7eb4df;
	--icz-accent-deep: #5a9fd4;
	--icz-ink: #111827;
	--icz-muted: rgba(17, 24, 39, 0.72);

	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	padding: 0.75rem;
	pointer-events: none;
}

.infozet-cookie-consent.is-hidden {
	display: none;
}

.infozet-cookie-consent__card {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 26rem;
	margin: 0 auto;
	padding: 1rem 1.05rem 1.05rem;
	border-radius: 14px;
	overflow: hidden;
	pointer-events: auto;
	background: rgba(232, 240, 248, 0.96);
	border: 1px solid rgba(34, 64, 110, 0.18);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.85),
		0 14px 40px rgba(12, 54, 114, 0.14);
	transform: translateY(110%);
	opacity: 0;
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.infozet-cookie-consent.is-visible .infozet-cookie-consent__card {
	transform: translateY(0);
	opacity: 1;
}

.infozet-cookie-consent__card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(
		155deg,
		rgba(255, 255, 255, 0.55) 0%,
		rgba(255, 255, 255, 0.08) 42%,
		rgba(126, 180, 223, 0.08) 100%
	);
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
	.infozet-cookie-consent__card {
		background: rgba(214, 226, 240, 0.82);
		border-color: rgba(34, 64, 110, 0.16);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		backdrop-filter: blur(20px) saturate(180%);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.72),
			0 16px 44px rgba(12, 54, 114, 0.14),
			0 1px 0 rgba(34, 64, 110, 0.05);
	}
}

.infozet-cookie-consent__text {
	position: relative;
	z-index: 1;
	margin: 0 0 0.85rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--icz-muted);
}

.infozet-cookie-consent__link {
	color: var(--icz-accent-deep);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(90, 159, 212, 0.4);
	text-underline-offset: 0.14em;
}

.infozet-cookie-consent__link:hover,
.infozet-cookie-consent__link:focus {
	color: #3d7fb8;
}

.infozet-cookie-consent__btn {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.75rem;
	margin: 0;
	padding: 0.65rem 1rem;
	border: 1px solid rgba(90, 159, 212, 0.42);
	border-radius: 10px;
	background: linear-gradient(165deg, #b8daf8 0%, var(--icz-accent) 48%, var(--icz-accent-deep) 100%);
	color: #fff;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 8px 18px -12px rgba(90, 159, 212, 0.85);
	-webkit-tap-highlight-color: transparent;
	transition: opacity 0.2s ease;
}

.infozet-cookie-consent__btn:hover {
	opacity: 0.94;
}

.infozet-cookie-consent__btn:focus,
.infozet-cookie-consent__btn:focus-visible,
.infozet-cookie-consent__btn:active {
	outline: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 6px 14px -12px rgba(90, 159, 212, 0.75);
}

@media (min-width: 768px) {
	.infozet-cookie-consent {
		left: auto;
		right: 1.25rem;
		bottom: 1.25rem;
		width: auto;
		max-width: 26rem;
		padding: 0;
	}

	.infozet-cookie-consent__card {
		margin: 0;
	}
}

@media (prefers-reduced-transparency: reduce) {
	.infozet-cookie-consent__card {
		background: #e6eef6;
		border-color: rgba(34, 64, 110, 0.2);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.infozet-cookie-consent__card::before {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.infozet-cookie-consent__card {
		transform: none;
		transition: none;
	}

	.infozet-cookie-consent.is-visible .infozet-cookie-consent__card {
		opacity: 1;
	}
}

html.infozet-has-cookie-consent body {
	padding-bottom: 0;
}
