.horeca-cookie-consent {
	--hcc-bg: #ffffff;
	--hcc-border: #e0e0e0;
	--hcc-text: #333333;
	--hcc-accent: #f2e34c;
	--hcc-accent-hover: #e6d63f;
	--hcc-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);

	position: fixed;
	z-index: 999999;
	left: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	padding: 0 12px calc(12px + env(safe-area-inset-bottom, 0));
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	color: var(--hcc-text);
	pointer-events: none;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.horeca-cookie-consent.is-visible {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

.horeca-cookie-consent__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 14px 18px;
	background: var(--hcc-bg);
	border: 1px solid var(--hcc-border);
	border-radius: 14px 14px 0 0;
	box-shadow: var(--hcc-shadow);
}

.horeca-cookie-consent__text {
	flex: 1 1 280px;
	margin: 0;
}

.horeca-cookie-consent__link {
	color: #1a1a1a;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.horeca-cookie-consent__link:hover,
.horeca-cookie-consent__link:focus {
	color: #000000;
}

.horeca-cookie-consent__actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

.horeca-cookie-consent__btn {
	flex: 0 0 auto;
	margin: 0;
	padding: 10px 22px;
	border: none;
	border-radius: 8px;
	background: var(--hcc-accent);
	color: #000000;
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.horeca-cookie-consent__btn--reject {
	background: transparent;
	border: 1px solid var(--hcc-border);
	color: var(--hcc-text);
	font-weight: 500;
}

.horeca-cookie-consent__btn:hover,
.horeca-cookie-consent__btn:focus {
	background: var(--hcc-accent-hover);
	outline: none;
}

.horeca-cookie-consent__btn--reject:hover,
.horeca-cookie-consent__btn--reject:focus {
	background: #f5f5f5;
	border-color: #bdbdbd;
}

.horeca-cookie-consent__btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(242, 227, 76, 0.55);
}

.horeca-cookie-consent__btn--reject:focus-visible {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
	.horeca-cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.horeca-cookie-consent__actions {
		width: 100%;
		flex-direction: column;
	}

	.horeca-cookie-consent__btn {
		width: 100%;
	}
}
