.nikba-consent-hidden {
	display: none !important;
}

:root {
	--nikba-consent-bg: #1a2030;
	--nikba-consent-text: #ffffff;
	--nikba-consent-muted: rgba(255, 255, 255, 0.78);
	--nikba-consent-accent: #ee3900;
	--nikba-consent-accent-hover: #d53300;
	--nikba-consent-border: rgba(255, 255, 255, 0.12);
	--nikba-consent-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	--nikba-consent-modal-text: #1a2030;
	--nikba-consent-modal-muted: #5c6478;
	--nikba-consent-modal-border: rgba(26, 32, 48, 0.12);
}

#nikba-consent-banner,
#nikba-consent-modal {
	position: fixed;
	z-index: 99999;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

#nikba-consent-banner {
	left: 16px;
	right: 16px;
	bottom: 16px;
	max-width: 1120px;
	margin: 0 auto;
	background: var(--nikba-consent-bg);
	color: var(--nikba-consent-text);
	border: 1px solid var(--nikba-consent-border);
	border-radius: 16px;
	box-shadow: var(--nikba-consent-shadow);
	overflow: hidden;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

#nikba-consent-banner::before {
	content: "";
	display: block;
	height: 4px;
	background: linear-gradient(90deg, #1a2030 0%, #ee3900 100%);
}

#nikba-consent-banner.nikba-consent-banner--visible {
	opacity: 1;
	transform: translateY(0);
}

#nikba-consent-banner .nikba-consent-inner {
	padding: 22px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 28px;
	align-items: center;
	justify-content: space-between;
}

#nikba-consent-banner .nikba-consent-copy {
	flex: 1 1 520px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	min-width: 0;
}

#nikba-consent-banner .nikba-consent-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(238, 57, 0, 0.18);
	color: #ff6b35;
	display: flex;
	align-items: center;
	justify-content: center;
}

#nikba-consent-banner .nikba-consent-icon svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#nikba-consent-banner .nikba-consent-icon svg path {
	fill: none;
}

#nikba-consent-banner .nikba-consent-icon svg circle {
	fill: currentColor;
	stroke: none;
}

#nikba-consent-banner .nikba-consent-text {
	min-width: 0;
}

#nikba-consent-banner h2,
#nikba-consent-banner .nikba-consent-copy h2,
#nikba-consent-banner .nikba-consent-text h2 {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff !important;
}

#nikba-consent-modal h2 {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--nikba-consent-modal-text);
}

#nikba-consent-banner p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--nikba-consent-muted);
}

#nikba-consent-modal p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--nikba-consent-modal-muted);
}

#nikba-consent-banner .nikba-consent-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-top: 12px;
}

#nikba-consent-banner .nikba-consent-links a {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	transition: color 0.2s ease, border-color 0.2s ease;
}

#nikba-consent-modal .nikba-consent-links a {
	color: var(--nikba-consent-modal-text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(238, 57, 0, 0.45);
	transition: color 0.2s ease, border-color 0.2s ease;
}

#nikba-consent-banner .nikba-consent-links a:hover,
#nikba-consent-modal .nikba-consent-links a:hover {
	color: var(--nikba-consent-accent);
	border-bottom-color: var(--nikba-consent-accent);
}

#nikba-consent-banner .nikba-consent-links-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
}

#nikba-consent-banner .nikba-consent-actions,
#nikba-consent-modal .nikba-consent-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex: 0 1 auto;
}

.nikba-consent-btn {
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 11px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
}

.nikba-consent-btn:hover {
	transform: translateY(-1px);
}

.nikba-consent-btn:active {
	transform: translateY(0);
}

.nikba-consent-btn-primary {
	background: var(--nikba-consent-accent);
	color: #fff;
	border-color: var(--nikba-consent-accent);
}

.nikba-consent-btn-primary:hover {
	background: var(--nikba-consent-accent-hover);
	border-color: var(--nikba-consent-accent-hover);
}

#nikba-consent-banner .nikba-consent-btn-secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.55);
}

#nikba-consent-banner .nikba-consent-btn-secondary:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
}

#nikba-consent-modal .nikba-consent-btn-secondary {
	background: #fff;
	color: var(--nikba-consent-modal-text);
	border-color: rgba(26, 32, 48, 0.22);
}

#nikba-consent-modal .nikba-consent-btn-secondary:hover {
	border-color: var(--nikba-consent-modal-text);
	background: rgba(26, 32, 48, 0.04);
}

#nikba-consent-banner .nikba-consent-btn-ghost {
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	border-color: transparent;
	padding-left: 12px;
	padding-right: 12px;
}

#nikba-consent-banner .nikba-consent-btn-ghost:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
}

#nikba-consent-modal {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 32, 48, 0.55);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

#nikba-consent-modal .nikba-consent-dialog {
	background: #fff;
	color: var(--nikba-consent-modal-text);
	max-width: 560px;
	width: 100%;
	border-radius: 16px;
	padding: 0;
	box-shadow: var(--nikba-consent-shadow);
	overflow: hidden;
}

#nikba-consent-modal .nikba-consent-dialog::before {
	content: "";
	display: block;
	height: 4px;
	background: linear-gradient(90deg, #1a2030 0%, #ee3900 100%);
}

#nikba-consent-modal .nikba-consent-dialog-body {
	padding: 24px;
}

#nikba-consent-modal .nikba-consent-category {
	border: 1px solid var(--nikba-consent-modal-border);
	border-radius: 12px;
	padding: 14px 16px;
	margin-top: 12px;
	background: #fafbfd;
}

#nikba-consent-modal .nikba-consent-category label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	cursor: pointer;
}

#nikba-consent-modal .nikba-consent-category input {
	margin-top: 4px;
	accent-color: var(--nikba-consent-accent);
}

#nikba-consent-modal .nikba-consent-category strong {
	display: block;
	margin-bottom: 4px;
	color: var(--nikba-consent-modal-text);
}

#nikba-consent-modal .nikba-consent-category small {
	display: block;
	color: var(--nikba-consent-modal-muted);
	line-height: 1.5;
}

#nikba-consent-modal .nikba-consent-actions {
	padding: 0 24px 24px;
}

@media (max-width: 767px) {
	#nikba-consent-banner {
		left: 10px;
		right: 10px;
		bottom: 10px;
		border-radius: 14px;
	}

	#nikba-consent-banner .nikba-consent-inner {
		padding: 18px 16px;
	}

	#nikba-consent-banner .nikba-consent-copy {
		flex-direction: row;
	}

	#nikba-consent-banner .nikba-consent-actions,
	#nikba-consent-modal .nikba-consent-actions {
		width: 100%;
		justify-content: stretch;
	}

	#nikba-consent-banner .nikba-consent-btn-secondary,
	#nikba-consent-banner .nikba-consent-btn-primary {
		flex: 1 1 calc(50% - 5px);
		text-align: center;
	}

	#nikba-consent-banner .nikba-consent-btn-ghost {
		width: 100%;
		text-align: center;
	}
}

@media (min-width: 1140px) {
	#nikba-consent-banner {
		left: 50%;
		right: auto;
		transform: translate(-50%, 24px);
		width: calc(100% - 32px);
	}

	#nikba-consent-banner.nikba-consent-banner--visible {
		transform: translate(-50%, 0);
	}
}

.gdpr-consent-field {
	margin-top: 12px;
	margin-bottom: 0;
}

.gdpr-consent-field label {
	font-weight: 400;
	line-height: 1.5;
}

.gdpr-consent-field a {
	text-decoration: underline;
}

.gdpr-consent-field--compact {
	margin-top: 10px;
}

.gdpr-consent-field--compact label {
	display: block;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.gdpr-consent-field--compact a {
	color: #ffffff;
}

.gdpr-consent-field--compact input[type="checkbox"] {
	margin-right: 6px;
	vertical-align: top;
	margin-top: 2px;
}

#footer #form-subscribe .gdpr-form-alert {
	margin-bottom: 10px;
	padding: 8px 12px;
	font-size: 13px;
}

#footer #form-subscribe .gdpr-form-alert.alert-success {
	background: rgba(47, 133, 90, 0.25);
	border: 1px solid rgba(47, 133, 90, 0.45);
	color: #fff;
}

#footer #form-subscribe .gdpr-form-alert.alert-danger {
	background: rgba(238, 57, 0, 0.2);
	border: 1px solid rgba(238, 57, 0, 0.45);
	color: #fff;
}
