/* ═══════════════════════════════════════════════════════════
   11-NEWSLETTER.CSS — Simple Newsletter Popup (no hero image)
   ─────────────────────────────────────────────────────────── */

.nl-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(3, 11, 26, 0.65);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 300;
}
.nl-backdrop.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nl-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.94);
	width: min(440px, calc(100vw - 32px));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
	z-index: 301;
}
.nl-popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.nl-card.nl-card-simple {
	background: linear-gradient(150deg, rgba(30, 58, 138, 0.97) 0%, rgba(15, 26, 46, 0.99) 100%);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	padding: 36px 32px 28px;
	text-align: center;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
	position: relative;
}

.nl-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s;
}
.nl-close:hover { background: rgba(255, 255, 255, 0.16); }

.nl-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(96, 165, 250, 0.22));
	border: 1px solid rgba(34, 211, 238, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #67e8f9;
	font-size: 1.6rem;
}

.nl-title {
	font-family: 'Sora', sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 10px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.nl-subtitle {
	font-size: 0.95rem;
	color: rgba(219, 234, 254, 0.78);
	line-height: 1.55;
	margin: 0 0 22px;
}

.nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 12px;
}

.nl-input-wrap { position: relative; }

.nl-input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(219, 234, 254, 0.5);
	font-size: 0.95rem;
	pointer-events: none;
}

.nl-input {
	width: 100%;
	padding: 14px 16px 14px 44px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	color: #fff;
	font-size: 0.96rem;
	font-family: inherit;
	transition: border-color 0.18s, background 0.18s;
}
.nl-input::placeholder { color: rgba(219, 234, 254, 0.45); }
.nl-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(96, 165, 250, 0.5);
}

.nl-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
	color: #0b1426;
	font-weight: 700;
	font-size: 0.98rem;
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.18s, box-shadow 0.18s;
	box-shadow: 0 8px 24px rgba(34, 211, 238, 0.32);
	font-family: inherit;
}
.nl-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(34, 211, 238, 0.48);
}
.nl-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.nl-message {
	min-height: 22px;
	font-size: 0.86rem;
	margin: 4px 0 8px;
}
.nl-message.is-success { color: #86efac; }
.nl-message.is-error   { color: #fca5a5; }

.nl-skip {
	background: transparent;
	border: 0;
	color: rgba(219, 234, 254, 0.55);
	font-size: 0.85rem;
	cursor: pointer;
	padding: 6px 12px;
	margin-top: 2px;
	transition: color 0.18s;
	font-family: inherit;
}
.nl-skip:hover { color: rgba(219, 234, 254, 0.85); }

/* body.popup-open scroll lock-ი მუშავდება 01-base.css-დან */

@media (max-width: 600px) {
	.nl-card.nl-card-simple { padding: 28px 22px 22px; border-radius: 18px; }
	.nl-title { font-size: 1.15rem; }
	.nl-icon { width: 56px; height: 56px; font-size: 1.4rem; }
	.nl-subtitle { font-size: 0.9rem; margin-bottom: 18px; }
}
