body {
	--cookie-top: calc(16px + env(safe-area-inset-top, 0px));
	--cookie-bottom: auto;
	--cookie-manage-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

body:has(.footer-radio) {
	--cookie-manage-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
}

#cookie-consent {
	position: fixed;
	left: 50%;
	top: var(--cookie-top);
	bottom: var(--cookie-bottom);
	transform: translateX(-50%);
	background: #111;
	padding: 1rem 1.1rem;
	border: 1px solid #333;
	border-radius: 12px;
	max-width: 560px;
	width: clamp(320px,92vw,560px);
	box-shadow: 0 10px 30px rgba(0,0,0,.55);
	z-index: 120;
	display: none;
	font-family: inherit;
	line-height: 1.35;
}

#cookie-manage {
	display: none;
	position: fixed;
	left: 12px;
	bottom: var(--cookie-manage-bottom);
	background: #1a1a1a;
	color: #ccc;
	border: 1px solid #333;
	border-radius: 8px;
	padding: .45rem .7rem;
	font-size: .7rem;
	letter-spacing: .05em;
	cursor: pointer;
	z-index: 110;
}