#wpconsent-banner {
	position: fixed;
	z-index: 999999;
	background: var(--wpc-bg, #1e1e2e);
	color: var(--wpc-text, #fff);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	font-size: 14px;
	line-height: 1.5;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

#wpconsent-banner.wpconsent-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(16px);
}

/* Pozice */
.wpconsent-pos-bottom-left {
	left: 20px;
	bottom: 20px;
	max-width: 420px;
	border-radius: 12px;
}

.wpconsent-pos-bottom-right {
	right: 20px;
	bottom: 20px;
	max-width: 420px;
	border-radius: 12px;
}

.wpconsent-pos-bottom-bar {
	left: 0;
	right: 0;
	bottom: 0;
}

.wpconsent-pos-bottom-bar .wpconsent-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.wpconsent-inner {
	padding: 20px;
}

#wpconsent-banner h3 {
	margin: 0 0 8px;
	font-size: 16px;
	color: var(--wpc-text, #fff);
}

#wpconsent-banner p {
	margin: 0 0 14px;
	color: var(--wpc-text, #fff);
	opacity: 0.9;
}

#wpconsent-banner a {
	color: var(--wpc-accent, #00E5A0);
	text-decoration: underline;
}

/* Kategorie */
#wpconsent-categories {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 14px;
}

#wpconsent-categories.wpconsent-hidden {
	display: none;
}

.wpconsent-cat {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: 10px 12px;
	cursor: pointer;
}

.wpconsent-cat input {
	margin-top: 3px;
	accent-color: var(--wpc-accent, #00E5A0);
}

.wpconsent-cat small {
	opacity: 0.75;
}

/* Tlačítka */
.wpconsent-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wpconsent-btn {
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: transparent;
	color: var(--wpc-text, #fff);
	padding: 9px 16px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.15s ease, color 0.15s ease;
}

.wpconsent-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.wpconsent-btn-primary {
	background: var(--wpc-accent, #00E5A0);
	border-color: var(--wpc-accent, #00E5A0);
	color: #111;
}

.wpconsent-btn-primary:hover {
	filter: brightness(1.1);
	background: var(--wpc-accent, #00E5A0);
}

.wpconsent-btn-link {
	border: none;
	text-decoration: underline;
	font-weight: 400;
}

.wpconsent-btn.wpconsent-hidden {
	display: none;
}

@media (max-width: 480px) {
	.wpconsent-pos-bottom-left,
	.wpconsent-pos-bottom-right {
		left: 10px;
		right: 10px;
		max-width: none;
	}
}
