.wpboost-gdpr {
	position: fixed;
	left: 20px;
	right: 20px;
	z-index: 999999;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--wpb-gdpr-text, #e5e7eb);
}

.wpboost-gdpr[hidden] {
	display: none !important;
}

.wpboost-gdpr--bottom {
	bottom: 20px;
}

.wpboost-gdpr--top {
	top: 20px;
}

.wpboost-gdpr__panel {
	max-width: 1100px;
	margin: 0 auto;
	background: var(--wpb-gdpr-bg, #0f172a);
	color: var(--wpb-gdpr-text, #e5e7eb);
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 18px 50px rgba(2, 6, 23, .35);
	border: 1px solid rgba(255,255,255,.08);
}

.wpboost-gdpr--modal {
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(2, 6, 23, .55);
	padding: 20px;
}

.wpboost-gdpr--modal .wpboost-gdpr__panel {
	max-width: 720px;
	width: 100%;
}

.wpboost-gdpr__title {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.wpboost-gdpr__text {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255,255,255,.86);
}

.wpboost-gdpr__text a {
	color: #fff;
	text-decoration: underline;
}

.wpboost-gdpr__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
	margin-bottom: 8px;
}

.wpboost-gdpr__choice {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.06);
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 14px;
}

.wpboost-gdpr__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.wpboost-gdpr__btn {
	appearance: none;
	border: 0;
	border-radius: 12px;
	padding: 12px 16px;
	font-weight: 700;
	cursor: pointer;
	transition: .18s ease;
}

.wpboost-gdpr__btn--primary {
	background: var(--wpb-gdpr-primary, #4f46e5);
	color: #fff;
}

.wpboost-gdpr__btn--primary:hover {
	filter: brightness(.95);
}

.wpboost-gdpr__btn--secondary {
	background: rgba(255,255,255,.12);
	color: #fff;
}

.wpboost-gdpr__btn--ghost {
	background: transparent;
	border: 1px solid rgba(255,255,255,.14);
	color: #fff;
}

@media (max-width: 782px) {
	.wpboost-gdpr {
		left: 12px;
		right: 12px;
		bottom: 12px;
		top: auto;
	}

	.wpboost-gdpr--top {
		top: 12px;
	}
}