/*
 * Custom cookie consent banner styling.
 * Buttons are deliberately equal in size/weight/padding — OLG Köln
 * (Az. 6 U 80/23) struck down banners where "accept" is visually
 * dominant and "reject" is small/muted. All three actions here use
 * the same box model; only color differs.
 */

.kz-privacy-panel {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: rgba(32, 33, 27, 0.55);
	padding: 1rem;
}

.kz-privacy-panel[hidden] {
	display: none;
}

.kz-privacy-panel__panel {
	width: 100%;
	max-width: 640px;
	margin-bottom: 1rem;
	background: #F0EEDF;
	color: #20211B;
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.kz-privacy-panel__title {
	margin: 0 0 0.75rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #20211B;
}

.kz-privacy-panel__text {
	margin: 0 0 1.25rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #20211B;
}

.kz-privacy-panel__link {
	color: #20211B;
	text-decoration: underline;
}

.kz-privacy-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.kz-privacy-btn {
	flex: 1 1 auto;
	min-width: 140px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: inherit;
	line-height: 1.2;
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
}

.kz-privacy-btn--primary {
	background: #20211B;
	color: #F0EEDF;
	border-color: #20211B;
}

.kz-privacy-btn--primary:hover {
	background: #33342a;
}

.kz-privacy-btn--secondary {
	background: transparent;
	color: #20211B;
	border-color: #20211B;
}

.kz-privacy-btn--secondary:hover {
	background: rgba(32, 33, 27, 0.08);
}

.kz-privacy-category {
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(32, 33, 27, 0.15);
}

.kz-privacy-category__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.kz-privacy-category__name {
	font-weight: 600;
	font-size: 0.92rem;
	color: #20211B;
}

.kz-privacy-category__desc {
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
	line-height: 1.4;
	color: #4a4b40;
}

.kz-privacy-toggle {
	position: relative;
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: #cfcdb8;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
}

.kz-privacy-toggle__dot {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #F0EEDF;
	transition: transform 0.15s ease;
}

.kz-privacy-toggle[aria-checked="true"] {
	background: #E7B57B;
}

.kz-privacy-toggle[aria-checked="true"] .kz-privacy-toggle__dot {
	transform: translateX(18px);
}

.kz-privacy-toggle--locked {
	background: #90947E;
	cursor: default;
	opacity: 0.7;
}

.kz-privacy-toggle--locked .kz-privacy-toggle__dot {
	transform: translateX(18px);
}

@media (max-width: 480px) {
	.kz-privacy-panel__panel {
		padding: 1.25rem;
		border-radius: 10px;
	}

	.kz-privacy-btn {
		min-width: 100%;
	}
}
