#knnp-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483040;
	background: rgba(28, 28, 28, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	transition: opacity 0.25s ease;
}

#knnp-overlay.knnp-hidden {
	display: none;
}

#knnp-popup {
	position: relative;
	background: #fdfbf8;
	max-width: 460px;
	width: 100%;
	padding: 44px 40px 36px;
	box-shadow: 0 24px 70px rgba(28, 28, 28, 0.28);
	font-family: "Jost", sans-serif;
	color: #1c1c1c;
	animation: knnp-in 0.35s ease;
	outline: none;
}

@keyframes knnp-in {
	from { transform: translateY(16px); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	#knnp-popup { animation: none; }
	#knnp-overlay { transition: none; }
}

#knnp-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	font-weight: 300;
	color: #9a958c;
	cursor: pointer;
	padding: 8px;
	transition: color 0.2s ease;
}

#knnp-close:hover,
#knnp-close:focus-visible {
	color: #1c1c1c;
}

.knnp-eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #81965e;
}

#knnp-popup h2 {
	margin: 0 0 14px;
	font-family: "Jost", sans-serif;
	font-size: 26px;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: 0.5px;
	color: #1c1c1c;
}

.knnp-text {
	margin: 0 0 22px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: #4c4a46;
}

#knnp-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#knnp-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
}

#knnp-email {
	width: 100%;
	box-sizing: border-box;
	padding: 13px 16px;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	color: #1c1c1c;
	background: #fff;
	border: 1px solid #d9d4cb;
	border-radius: 0;
}

#knnp-email::placeholder {
	color: #9a958c;
}

#knnp-email:focus {
	outline: 2px solid #81965e;
	outline-offset: 1px;
	border-color: #81965e;
}

.knnp-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 12.5px;
	line-height: 1.55;
	color: #6f6b64;
	cursor: pointer;
}

.knnp-consent input {
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: #81965e;
}

.knnp-consent a {
	color: #81965e;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#knnp-submit {
	width: 100%;
	padding: 14px 20px;
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
	background: #81965e;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background 0.2s ease;
}

#knnp-submit:hover,
#knnp-submit:focus-visible {
	background: #6b7f4c;
}

#knnp-submit:focus-visible {
	outline: 2px solid #1c1c1c;
	outline-offset: 2px;
}

#knnp-submit:disabled {
	opacity: 0.6;
	cursor: default;
}

#knnp-message {
	margin: 0;
	min-height: 1em;
	font-size: 13.5px;
	line-height: 1.5;
	color: #4c4a46;
}

#knnp-message.knnp-success {
	color: #5d7340;
}

#knnp-message.knnp-error {
	color: #b3261e;
}

/* Mobile: kompakten predal ob spodnjem robu — vsebina strani ostane vidna */
@media (max-width: 600px) {
	#knnp-overlay {
		align-items: flex-end;
		padding: 0;
		background: rgba(28, 28, 28, 0.15);
	}

	#knnp-popup {
		max-width: none;
		padding: 18px 18px 16px;
		box-shadow: 0 -10px 40px rgba(28, 28, 28, 0.2);
	}

	.knnp-eyebrow {
		display: none;
	}

	#knnp-popup h2 {
		font-size: 17px;
		margin-bottom: 6px;
		padding-right: 28px;
	}

	.knnp-text {
		font-size: 13px;
		line-height: 1.45;
		margin-bottom: 12px;
	}

	#knnp-form {
		gap: 9px;
	}

	#knnp-email {
		padding: 10px 13px;
		font-size: 16px; /* prepreči iOS zoom ob fokusu */
	}

	.knnp-consent {
		font-size: 11.5px;
		line-height: 1.4;
	}

	#knnp-submit {
		padding: 11px 16px;
		letter-spacing: 1px;
	}

	#knnp-close {
		top: 6px;
		right: 8px;
	}
}
