:root {
	--gfecb-ink: #171717;
	--gfecb-muted: #5b6168;
	--gfecb-surface: #ffffff;
	--gfecb-soft: #f4f6f8;
	--gfecb-border: #cbd1d7;
	--gfecb-link: #0c5f9c;
	--gfecb-accent: #123d31;
	--gfecb-accent-hover: #0c2d24;
	--gfecb-focus: #f0b429;
	--gfecb-overlay: #09110f;
	--gfecb-overlay-rgb: 9, 17, 15;
	--gfecb-overlay-opacity: 0.55;
	--gfecb-table-header-bg: #e9edf0;
	--gfecb-table-header-text: #171717;
	--gfecb-choice-bg: #123d31;
	--gfecb-choice-text: #ffffff;
	--gfecb-choice-border: #123d31;
	--gfecb-choice-hover-bg: #0c2d24;
	--gfecb-choice-hover-text: #ffffff;
	--gfecb-primary-bg: #123d31;
	--gfecb-primary-text: #ffffff;
	--gfecb-primary-border: #123d31;
	--gfecb-primary-hover-bg: #0c2d24;
	--gfecb-primary-hover-text: #ffffff;
	--gfecb-secondary-bg: #ffffff;
	--gfecb-secondary-text: #171717;
	--gfecb-secondary-border: #123d31;
	--gfecb-secondary-hover-bg: #f4f6f8;
	--gfecb-secondary-hover-text: #171717;
	--gfecb-reopen-bg: #ffffff;
	--gfecb-reopen-text: #171717;
	--gfecb-reopen-border: #123d31;
	--gfecb-reopen-hover-bg: #f4f6f8;
	--gfecb-reopen-hover-text: #171717;
	--gfecb-max-width: 1160px;
	--gfecb-font-size: 16px;
	--gfecb-padding: 24px;
	--gfecb-panel-radius: 16px;
	--gfecb-button-radius: 8px;
	--gfecb-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.gfecb-root,
.gfecb-root *,
.gfecb-reopen,
.gfecb-reopen * {
	box-sizing: border-box;
}

.gfecb-root[hidden],
.gfecb-root [hidden],
.gfecb-reopen[hidden] {
	display: none !important;
}

.gfecb-banner {
	position: fixed;
	z-index: 2147483645;
	right: 20px;
	bottom: 20px;
	left: 20px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
	gap: 26px;
	max-width: var(--gfecb-max-width);
	max-height: calc(100vh - 40px);
	margin: 0 auto;
	padding: var(--gfecb-padding);
	overflow: auto;
	color: var(--gfecb-ink);
	background: var(--gfecb-surface);
	border: 1px solid var(--gfecb-border);
	border-radius: var(--gfecb-panel-radius);
	box-shadow: var(--gfecb-shadow);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: var(--gfecb-font-size);
	line-height: 1.55;
}

.gfecb-banner--top {
	top: 20px;
	bottom: auto;
}

.gfecb-banner h2,
.gfecb-preferences h2,
.gfecb-preferences h3 {
	margin: 0;
	color: var(--gfecb-ink);
	font-family: inherit;
	line-height: 1.2;
}

.gfecb-banner h2,
.gfecb-preferences h2 {
	font-size: clamp(22px, 3vw, 30px);
}

.gfecb-banner p,
.gfecb-preferences p {
	margin: 10px 0 0;
	color: var(--gfecb-muted);
}

.gfecb-banner strong,
.gfecb-preferences strong {
	color: var(--gfecb-ink);
}

.gfecb-eyebrow {
	margin: 0 0 6px !important;
	color: var(--gfecb-accent) !important;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.gfecb-policy-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 14px;
}

.gfecb-policy-links a,
.gfecb-preferences a {
	color: var(--gfecb-link);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gfecb-actions {
	display: flex;
	gap: 10px;
}

.gfecb-actions--first {
	flex-direction: column;
	justify-content: center;
}

.gfecb-button,
.gfecb-back,
.gfecb-reopen {
	min-height: 44px;
	padding: 11px 16px;
	color: var(--gfecb-secondary-text);
	background: var(--gfecb-secondary-bg);
	border: 2px solid var(--gfecb-secondary-border);
	border-radius: var(--gfecb-button-radius);
	font: 700 15px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: center;
	cursor: pointer;
}

.gfecb-button--choice {
	color: var(--gfecb-choice-text);
	background: var(--gfecb-choice-bg);
	border-color: var(--gfecb-choice-border);
}

.gfecb-button--choice:hover,
.gfecb-button--choice:focus-visible {
	color: var(--gfecb-choice-hover-text);
	background: var(--gfecb-choice-hover-bg);
}

.gfecb-button--primary {
	color: var(--gfecb-primary-text);
	background: var(--gfecb-primary-bg);
	border-color: var(--gfecb-primary-border);
}

.gfecb-button--primary:hover,
.gfecb-button--primary:focus-visible {
	color: var(--gfecb-primary-hover-text);
	background: var(--gfecb-primary-hover-bg);
}

.gfecb-button--secondary:hover,
.gfecb-button--secondary:focus-visible,
.gfecb-back:hover,
.gfecb-back:focus-visible {
	color: var(--gfecb-secondary-hover-text);
	background: var(--gfecb-secondary-hover-bg);
}

.gfecb-button:focus-visible,
.gfecb-back:focus-visible,
.gfecb-reopen:focus-visible,
.gfecb-switch input:focus-visible + span,
.gfecb-preferences summary:focus-visible {
	outline: 3px solid var(--gfecb-focus);
	outline-offset: 3px;
}

.gfecb-preferences {
	position: fixed;
	z-index: 2147483646;
	top: 50%;
	left: 50%;
	width: min(760px, calc(100vw - 32px));
	max-height: min(800px, calc(100vh - 32px));
	padding: var(--gfecb-padding);
	overflow: auto;
	transform: translate(-50%, -50%);
	color: var(--gfecb-ink);
	background: var(--gfecb-surface);
	border: 1px solid var(--gfecb-border);
	border-radius: var(--gfecb-panel-radius);
	box-shadow: var(--gfecb-shadow);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: var(--gfecb-font-size);
	line-height: 1.5;
}

.gfecb-dialog-open .gfecb-root::before {
	content: "";
	position: fixed;
	z-index: 2147483645;
	inset: 0;
	background: rgba(var(--gfecb-overlay-rgb), var(--gfecb-overlay-opacity));
}

.gfecb-root .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.gfecb-dialog-open {
	overflow: hidden;
}

.gfecb-preferences__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.gfecb-back {
	min-height: 40px;
	padding: 8px 12px;
}

.gfecb-category-list {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.gfecb-provider-summary {
	padding: 12px 14px;
	background: var(--gfecb-soft);
	border: 1px solid var(--gfecb-border);
	border-radius: calc(var(--gfecb-panel-radius) / 2);
}

.gfecb-category {
	overflow: hidden;
	background: var(--gfecb-soft);
	border: 1px solid var(--gfecb-border);
	border-radius: 10px;
}

.gfecb-category__summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px;
}

.gfecb-category h3 {
	font-size: 18px;
}

.gfecb-category__summary p {
	margin-top: 5px;
	font-size: 14px;
}

.gfecb-category details {
	border-top: 1px solid var(--gfecb-border);
}

.gfecb-category summary {
	padding: 12px 16px;
	font-weight: 700;
	cursor: pointer;
}

.gfecb-category__details {
	padding: 0 16px 16px;
	background: var(--gfecb-surface);
}

.gfecb-switch {
	position: relative;
	display: inline-flex;
}

.gfecb-switch input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.gfecb-switch span {
	position: relative;
	display: block;
	width: 52px;
	height: 30px;
	background: #747b82;
	border: 2px solid #747b82;
	border-radius: 999px;
	transition: background 0.16s ease;
}

.gfecb-switch span::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	transition: transform 0.16s ease;
}

.gfecb-switch input:checked + span {
	background: var(--gfecb-accent);
	border-color: var(--gfecb-accent);
}

.gfecb-switch:hover input:checked + span {
	background: var(--gfecb-accent-hover);
	border-color: var(--gfecb-accent-hover);
}

.gfecb-switch input:checked + span::after {
	transform: translateX(22px);
}

.gfecb-switch input:disabled + span {
	opacity: 0.72;
	cursor: not-allowed;
}

.gfecb-table-scroll {
	width: 100%;
	margin-top: 12px;
	overflow-x: auto;
}

.gfecb-cookie-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	font-size: 13px;
}

.gfecb-cookie-table th,
.gfecb-cookie-table td {
	padding: 9px;
	vertical-align: top;
	border: 1px solid var(--gfecb-border);
	text-align: left;
}

.gfecb-cookie-table th {
	color: var(--gfecb-table-header-text);
	background: var(--gfecb-table-header-bg);
}

.gfecb-cookie-table code {
	padding: 1px 4px;
	color: #253135;
	background: #eef1f2;
}

.gfecb-empty {
	font-style: italic;
}

.gfecb-withdrawal {
	margin-top: 18px;
	padding: 14px;
	background: var(--gfecb-soft);
	border-left: 4px solid var(--gfecb-accent);
}

.gfecb-withdrawal p {
	margin: 0;
	font-size: 14px;
}

.gfecb-actions--preferences {
	flex-wrap: wrap;
	margin-top: 20px;
}

.gfecb-actions--preferences .gfecb-button {
	flex: 1 1 160px;
}

.gfecb-reopen {
	position: fixed;
	z-index: 2147483644;
	bottom: 14px;
	left: 14px;
	min-height: 38px;
	padding: 8px 12px;
	color: var(--gfecb-reopen-text);
	background: var(--gfecb-reopen-bg);
	border: 2px solid var(--gfecb-reopen-border);
	border-radius: var(--gfecb-button-radius);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
	font-size: 13px;
}

.gfecb-reopen:hover,
.gfecb-reopen:focus-visible {
	color: var(--gfecb-reopen-hover-text);
	background: var(--gfecb-reopen-hover-bg);
}

.gfecb-noscript {
	position: fixed;
	z-index: 2147483647;
	right: 12px;
	bottom: 12px;
	left: 12px;
	padding: 12px;
	color: var(--gfecb-ink);
	background: var(--gfecb-soft);
	border: 2px solid var(--gfecb-border);
	font: 600 14px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gfecb-embed__placeholder {
	display: grid;
	place-items: center;
	min-height: 240px;
	padding: 30px;
	background: var(--gfecb-soft);
	border: 1px solid var(--gfecb-border);
	text-align: center;
}

.gfecb-embed iframe {
	display: block;
	border: 0;
}

@media (max-width: 720px) {
	.gfecb-banner {
		right: 10px;
		bottom: 10px;
		left: 10px;
		grid-template-columns: 1fr;
		gap: 18px;
		max-height: calc(100vh - 20px);
		padding: 18px;
	}

	.gfecb-banner--top {
		top: 10px;
		bottom: auto;
	}

	.gfecb-actions--first {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.gfecb-actions--first .gfecb-button--secondary {
		grid-column: 1 / -1;
	}

	.gfecb-preferences {
		top: 8px;
		right: 8px;
		bottom: 8px;
		left: 8px;
		width: auto;
		max-height: none;
		padding: 18px;
		transform: none;
	}
}

@media (max-width: 430px) {
	.gfecb-actions--first {
		grid-template-columns: 1fr;
	}

	.gfecb-actions--first .gfecb-button--secondary {
		grid-column: auto;
	}

	.gfecb-preferences__header {
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gfecb-switch span,
	.gfecb-switch span::after {
		transition: none;
	}
}
