.ppb-consent {
	position: fixed;
	left: 50%;
	bottom: 22px;
	z-index: 99990;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	width: min(650px, calc(100vw - 44px));
	padding: 20px;
	border: 1px solid var(--ppb-border, #dfe4dc);
	border-top: 3px solid var(--ppb-accent, #2c7a60);
	border-radius: 18px;
	background: var(--ppb-surface-background, #fff);
	box-shadow: 0 22px 65px rgba(23, 32, 27, .18);
	color: var(--ppb-primary-text, #17201b);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.45;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.ppb-consent[hidden] {
	display: none;
}

.ppb-consent.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
	transition-delay: 0s;
}

.ppb-consent__content {
	min-width: 0;
}

.ppb-consent__eyebrow {
	margin: 0 0 4px;
	color: var(--ppb-accent, #2c7a60);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ppb-consent h2 {
	margin: 0 0 7px;
	color: var(--ppb-primary-text, #17201b);
	font-size: 20px;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.ppb-consent h2:focus {
	outline: none;
}

.ppb-consent__content > p:last-child {
	margin: 0;
	color: var(--ppb-muted-text, #667169);
	font-size: 13px;
}

.ppb-consent__actions {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: 8px;
	align-content: center;
	align-items: center;
}

.ppb-consent__button {
	min-height: 40px;
	padding: 9px 15px;
	border: 1px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	line-height: 1;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ppb-consent__button:hover {
	transform: translateY(-1px);
}

.ppb-consent__button:focus-visible,
.ppb-consent__link:focus-visible,
[data-ppb-privacy-choices]:focus-visible {
	outline: 3px solid var(--ppb-highlight, #f4d565);
	outline-offset: 2px;
}

.ppb-consent__button:disabled {
	cursor: wait;
	opacity: .65;
}

.ppb-consent__button--accept {
	background: var(--ppb-primary-action, #f45b3a);
	color: #fff;
}

.ppb-consent__button--accept:hover {
	background: var(--ppb-primary-action-hover, #dc4527);
}

.ppb-consent__button--reject {
	background: var(--ppb-accent, #2c7a60);
	color: #fff;
}

.ppb-consent__button--reject:hover {
	background: var(--ppb-accent-hover, #21624c);
}

.ppb-consent__link {
	grid-column: 1 / -1;
	justify-self: center;
	color: var(--ppb-muted-text, #667169);
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ppb-privacy-choices {
	padding: 0;
	border: 0;
	background: transparent;
	color: #fffdf8;
	font: inherit;
	font-weight: 760;
	cursor: pointer;
}

.ppb-privacy-choices:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 680px) {
	.ppb-consent {
		right: 12px;
		bottom: 12px;
		left: 12px;
		grid-template-columns: 1fr;
		gap: 15px;
		width: auto;
		padding: 18px;
		transform: translateY(12px);
	}

	.ppb-consent.is-visible {
		transform: translateY(0);
	}

	.ppb-consent__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ppb-consent__button {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.ppb-consent__actions {
		grid-template-columns: 1fr;
	}

	.ppb-consent__link {
		grid-column: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ppb-consent,
	.ppb-consent__button {
		transition: none;
	}
}
