/* ═══════════════════════════════════════════════════════════════
   NV Product Catalog — product.css
   Концепция 2 «Маркетплейс: доверие и ясность»
   Palette: #2c3e50 dark-nav | #1d4ed8 accent | #3498db link
   Font stack: 'DM Sans', 'Playfair Display', system-ui
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Playfair+Display:wght@700;900&display=swap');

/* ── CSS Variables ───────────────────────────────────────────── */
.nvpc-product-page {
	--c-dark:    #2c3e50;
	--c-accent:  #1d4ed8;
	--c-link:    #3498db;
	--c-green:   #16a34a;
	--c-orange:  #ea580c;
	--c-amber:   #f59e0b;
	--c-text:    #1a2332;
	--c-muted:   #64748b;
	--c-faint:   #94a3b8;
	--c-border:  #e2e8f0;
	--c-bg:      #f8fbff;
	--c-surface: #ffffff;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--shadow-sm: 0 2px 8px rgba(0,0,0,.06);
	--shadow-md: 0 4px 24px rgba(0,0,0,.08);
}

/* ── Базовый контейнер ───────────────────────────────────────── */
.nvpc-product-page {
	font-family: 'DM Sans', system-ui, sans-serif;
	color: var(--c-text);
	max-width: 1200px;
}

/* ── Хлебные крошки ──────────────────────────────────────────── */
.nvpc-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	padding: 14px 0 0;
	font-size: 12px;
	color: var(--c-faint);
}
.nvpc-breadcrumb a {
	color: var(--c-link);
	text-decoration: none;
	font-weight: 500;
	transition: color .15s;
}
.nvpc-breadcrumb a:hover { color: var(--c-accent); }
.nvpc-breadcrumb__sep { color: var(--c-border); }
.nvpc-breadcrumb__current { color: var(--c-muted); font-weight: 500; }

/* ════════════════════════════════════════════════════════════════
   HERO — заголовок + цена
   ════════════════════════════════════════════════════════════════ */
.nvpc-hero {
	background: linear-gradient(90deg, var(--c-bg) 0%, var(--c-surface) 100%);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 24px 28px 20px;
	margin: 16px 0 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

/* Левая: заголовок + мета */
.nvpc-hero__left {}

.nvpc-hero__kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--c-link);
	margin-bottom: 8px;
}
.nvpc-hero__kicker a {
	color: inherit;
	text-decoration: none;
}
.nvpc-hero__kicker a:hover { text-decoration: underline; }

.nvpc-hero__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 30px;
	font-weight: 700;
	color: var(--c-text);
	line-height: 1.2;
	margin: 0 0 12px;
}
@media (max-width: 640px) {
	.nvpc-hero__title { font-size: 22px; }
}

.nvpc-hero__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.nvpc-hero__brand {
	background: #eff6ff;
	color: var(--c-accent);
	font-size: 12px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
}
.nvpc-hero__art {
	font-size: 12px;
	color: var(--c-faint);
	font-style: italic;
}
.nvpc-hero__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: var(--c-text);
}
.nvpc-hero__stars { color: var(--c-amber); font-size: 13px; }
.nvpc-hero__rating-val { font-weight: 700; }
.nvpc-hero__rating-cnt { color: var(--c-muted); font-size: 12px; }
.nvpc-hero__sep { color: var(--c-border); }
.nvpc-hero__stock {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-green);
}

/* Правая: цена */
.nvpc-hero__price {
	text-align: right;
	flex-shrink: 0;
}
.nvpc-hero__price-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--c-faint);
	margin-bottom: 2px;
}
.nvpc-hero__price-num {
	font-family: 'DM Sans', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: var(--c-accent);
	line-height: 1;
	letter-spacing: -1px;
}
.nvpc-hero__price-unit {
	font-size: 13px;
	color: var(--c-muted);
	margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════
   ОСНОВНАЯ СЕТКА: галерея + правая панель
   ════════════════════════════════════════════════════════════════ */
.nvpc-layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 20px;
	align-items: start;
	margin-bottom: 32px;
}
@media (max-width: 960px) {
	.nvpc-layout { grid-template-columns: 1fr; }
}

/* ── Галерея ─────────────────────────────────────────────────── */
.nvpc-gallery {}

.nvpc-gallery__main {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--c-bg);
	border: 1px solid var(--c-border);
	margin-bottom: 10px;
	cursor: zoom-in;
}
.nvpc-gallery__main img {
	display: block;
	width: 100%;
	height: 380px;
	object-fit: cover;
	transition: transform .3s ease;
}
.nvpc-gallery__main:hover img { transform: scale(1.02); }

.nvpc-gallery__placeholder {
	height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%);
}
.nvpc-gallery__placeholder-icon { font-size: 80px; opacity: .5; }
.nvpc-gallery__placeholder-text { font-size: 13px; color: var(--c-faint); }

.nvpc-gallery__counter {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(0,0,0,.45);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
	pointer-events: none;
}

.nvpc-gallery__thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.nvpc-gallery__thumb {
	width: 76px;
	height: 62px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 2px solid var(--c-border);
	cursor: pointer;
	transition: border-color .15s, opacity .15s;
	flex-shrink: 0;
	background: var(--c-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}
.nvpc-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nvpc-gallery__thumb--active { border-color: var(--c-accent); }
.nvpc-gallery__thumb:hover { border-color: var(--c-link); opacity: .9; }

/* ── Левый контент (спеки + описание) ───────────────────────── */
.nvpc-main {}

/* Характеристики — сетка плиток */
.nvpc-specs {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 20px 22px;
	margin-bottom: 16px;
	box-shadow: var(--shadow-sm);
}
.nvpc-specs__head {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--c-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nvpc-specs__count {
	font-size: 11px;
	color: var(--c-faint);
	font-weight: 400;
}
.nvpc-specs__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
@media (max-width: 600px) {
	.nvpc-specs__grid { grid-template-columns: repeat(2, 1fr); }
}
.nvpc-spec-tile {
	background: var(--c-bg);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	transition: border-color .15s, box-shadow .15s;
}
.nvpc-spec-tile:hover {
	border-color: #93c5fd;
	box-shadow: 0 2px 8px rgba(29,78,216,.08);
}
.nvpc-spec-tile__key {
	font-size: 11px;
	color: var(--c-faint);
	margin-bottom: 5px;
	font-weight: 500;
}
.nvpc-spec-tile__val {
	font-size: 16px;
	font-weight: 700;
	color: var(--c-text);
	line-height: 1.2;
}
.nvpc-spec-tile__unit {
	font-size: 11px;
	color: var(--c-link);
	font-weight: 500;
	margin-left: 3px;
}

/* Описание */
.nvpc-description {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 20px 22px;
	margin-bottom: 16px;
	box-shadow: var(--shadow-sm);
}
.nvpc-description__head {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--c-border);
}
.nvpc-description__body {
	font-size: 14px;
	line-height: 1.78;
	color: #374151;
}
.nvpc-description__body p { margin-bottom: 10px; }
.nvpc-description__body p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════════
   ПРАВАЯ ПАНЕЛЬ (sticky)
   ════════════════════════════════════════════════════════════════ */
.nvpc-sidebar {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 80px;
}

/* Карточка цен */
.nvpc-price-card {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 20px;
	box-shadow: var(--shadow-sm);
}
.nvpc-price-card__head {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--c-faint);
	margin-bottom: 14px;
}
.nvpc-price-table { width: 100%; border-collapse: collapse; }
.nvpc-price-table tr { border-bottom: 1px solid #f1f5f9; }
.nvpc-price-table tr:last-child { border-bottom: none; }
.nvpc-price-table td { padding: 10px 0; font-size: 13px; vertical-align: middle; }
.nvpc-price-table td:last-child { text-align: right; }

.nvpc-price-table .nvpc-pt-main td { padding: 14px 0 12px; }
.nvpc-price-table .nvpc-pt-main td:first-child {
	font-size: 14px;
	font-weight: 600;
	color: var(--c-text);
}
.nvpc-price-table .nvpc-pt-main td:last-child {
	font-size: 22px;
	font-weight: 700;
	color: var(--c-accent);
	letter-spacing: -.5px;
}
.nvpc-price-table .nvpc-pt-row td:first-child { color: var(--c-muted); }
.nvpc-price-table .nvpc-pt-row td:last-child { font-weight: 600; color: var(--c-text); }
.nvpc-price-table .nvpc-pt-deposit td:last-child { color: var(--c-orange); font-weight: 700; }
.nvpc-price-no { font-size: 15px; color: var(--c-faint); font-style: italic; }

/* Логистика теги */
.nvpc-logistics {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--c-border);
}
.nvpc-logistics-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
}
.nvpc-logistics-tag--delivery { background: #dcfce7; color: var(--c-green); }
.nvpc-logistics-tag--pickup   { background: #dbeafe; color: var(--c-accent); }

/* Карточка компании */
.nvpc-company-card {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	box-shadow: var(--shadow-sm);
}
.nvpc-company-card__head {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--c-faint);
	margin-bottom: 14px;
}
.nvpc-company-card__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.nvpc-co-avatar {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: var(--c-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 900;
	flex-shrink: 0;
	letter-spacing: -1px;
}
.nvpc-co-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--c-text);
	text-decoration: none;
	display: block;
	transition: color .15s;
}
.nvpc-co-name:hover { color: var(--c-link); }
.nvpc-co-sub {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 3px;
}
.nvpc-co-stars { color: var(--c-amber); font-size: 12px; }
.nvpc-co-rate { font-size: 13px; font-weight: 700; color: var(--c-text); }
.nvpc-co-cnt { font-size: 12px; color: var(--c-muted); }

.nvpc-company-card__addr {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 12px;
	color: var(--c-muted);
	line-height: 1.55;
	margin-bottom: 12px;
}
.nvpc-company-card__addr-icon { flex-shrink: 0; font-style: normal; }

.nvpc-co-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.nvpc-co-tag {
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
}
.nvpc-co-tag--d { background: #dcfce7; color: var(--c-green); }
.nvpc-co-tag--p { background: #dbeafe; color: var(--c-accent); }

/* CTA кнопки */
.nvpc-cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.nvpc-cta-call {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px 20px;
	background: var(--c-dark);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 15px;
	font-weight: 700;
	font-family: 'DM Sans', sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: background .15s, transform .1s;
}
.nvpc-cta-call:hover { background: #1a2332; transform: translateY(-1px); color: #fff; }
.nvpc-cta-call:active { transform: translateY(0); }

.nvpc-cta-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 20px;
	background: var(--c-surface);
	color: var(--c-text);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: all .15s;
}
.nvpc-cta-profile:hover { border-color: var(--c-dark); color: var(--c-dark); }

.nvpc-cta-back {
	text-align: center;
	font-size: 12px;
	color: var(--c-faint);
	padding-top: 4px;
}
.nvpc-cta-back a {
	color: var(--c-link);
	text-decoration: none;
	font-weight: 600;
}
.nvpc-cta-back a:hover { text-decoration: underline; }

/* Trust блок */
.nvpc-trust {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 16px 18px;
	box-shadow: var(--shadow-sm);
}
.nvpc-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: #475569;
	padding: 7px 0;
	line-height: 1.4;
}
.nvpc-trust-item:not(:last-child) { border-bottom: 1px solid #f1f5f9; }
.nvpc-trust-ico {
	width: 30px;
	height: 30px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 15px;
}
.nvpc-trust-ico--g { background: #dcfce7; }
.nvpc-trust-ico--b { background: #dbeafe; }
.nvpc-trust-ico--y { background: #fef3c7; }

/* ════════════════════════════════════════════════════════════════
   НИЖНИЙ БЛОК: полные характеристики
   ════════════════════════════════════════════════════════════════ */
.nvpc-specs-full {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}
.nvpc-specs-full__head {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--c-border);
}
.nvpc-specs-full__table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 24px;
}
@media (max-width: 640px) {
	.nvpc-specs-full__table { grid-template-columns: 1fr; }
}
.nvpc-sf-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f1f5f9;
	gap: 12px;
}
.nvpc-sf-row:nth-child(odd) { background: none; }
.nvpc-sf-key { font-size: 13px; color: var(--c-muted); flex-shrink: 0; }
.nvpc-sf-val { font-size: 13px; font-weight: 700; color: var(--c-text); text-align: right; }
.nvpc-sf-unit { font-size: 11px; color: var(--c-link); margin-left: 3px; font-weight: 400; }

/* ════════════════════════════════════════════════════════════════
   СЕКЦИЯ ОПИСАНИЯ (нижний блок)
   ════════════════════════════════════════════════════════════════ */
.nvpc-desc-full {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}
.nvpc-desc-full__head {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--c-border);
	color: var(--c-text);
}
.nvpc-desc-full__body {
	font-size: 15px;
	line-height: 1.78;
	color: #374151;
}
.nvpc-desc-full__body p { margin-bottom: 12px; }
.nvpc-desc-full__body p:last-child { margin-bottom: 0; }

/* ── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 640px) {
	.nvpc-hero { padding: 16px; }
	.nvpc-hero__price { display: none; }
	.nvpc-specs-full { padding: 20px; }
	.nvpc-desc-full { padding: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   ОБНОВЛЕНИЕ: новые элементы карточки товара
   ═══════════════════════════════════════════════════════════════ */

/* ── Кнопка "Оставить заявку" (#1) ─────────────────────────── */
.nvpc-cta-lead-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13px 20px;
	background: #fff;
	color: #1a2332;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-sm, 8px);
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: all .15s;
}
.nvpc-cta-lead-btn:hover {
	border-color: #2c3e50;
	color: #2c3e50;
	background: #f8fafc;
}
.nvpc-cta-lead-btn svg {
	flex-shrink: 0;
	color: #3498db;
}

/* ── Описание под характеристиками (#4) ─────────────────────── */
.nvpc-desc-full {
	background: var(--c-surface, #fff);
	border: 1px solid var(--c-border, #e2e8f0);
	border-radius: var(--radius-md, 14px);
	padding: 20px 22px;
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.75;
	color: #374151;
	box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,.06));
}
.nvpc-desc-full p { margin-bottom: 10px; }
.nvpc-desc-full p:last-child { margin-bottom: 0; }
.nvpc-desc-empty {
	color: #94a3b8;
	font-style: italic;
	margin: 0;
}

/* ── Hero kicker (#7) ───────────────────────────────────────── */
.nvpc-hero__kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--c-link, #3498db);
	margin-bottom: 10px;
}
.nvpc-hero__kicker a {
	color: inherit;
	text-decoration: none;
}
.nvpc-hero__kicker a:hover { text-decoration: underline; }

/* ── Характеристики — все в одной плитке (#3) ───────────────── */
.nvpc-specs__head {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-text, #1a2332);
	padding-bottom: 12px;
	border-bottom: 2px solid var(--c-border, #e2e8f0);
	margin-bottom: 14px;
}

/* ── Popup стили (если nv-search css не подключён) ──────────── */
.nv-lead-modal { position: fixed; inset: 0; z-index: 9999; }
.nv-lead-modal[hidden] { display: none !important; }
.nv-lead-modal__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.5);
	backdrop-filter: blur(2px);
}
.nv-lead-modal__window {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
	border-radius: 16px;
	padding: 28px 32px;
	width: min(480px, calc(100vw - 32px));
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.nv-lead-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.nv-lead-modal__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 700;
	color: #1a2332;
	margin: 0;
}
.nv-lead-modal__close {
	width: 32px; height: 32px;
	border-radius: 8px;
	border: none;
	background: #f1f5f9;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.nv-lead-modal__close svg { width: 16px; height: 16px; }
.nv-lead-modal__close:hover { background: #e2e8f0; }
.nv-lead-modal__company-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
}
.nv-lead-field { margin-bottom: 14px; }
.nv-lead-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 5px;
}
.nv-lead-req { color: #ef4444; }
.nv-lead-input, .nv-lead-textarea {
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 9px 12px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color .15s;
	box-sizing: border-box;
}
.nv-lead-input:focus, .nv-lead-textarea:focus {
	border-color: #3b82f6;
	outline: none;
	box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.nv-lead-textarea { resize: vertical; }
.nv-lead-channels { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.nv-lead-channel {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all .15s;
}
.nv-lead-channel:hover { border-color: #2563eb; }
.nv-lead-channel.is-active { border-color: #2563eb; background: #eff6ff; color: #1d4ed8; }
.nv-lead-channel input { display: none; }
.nv-lead-error {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	color: #dc2626;
	margin-bottom: 12px;
}
.nv-lead-submit {
	width: 100%;
	padding: 13px 20px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	transition: background .15s;
}
.nv-lead-submit:hover { background: #1d4ed8; }
.nv-lead-submit:disabled { opacity: .7; cursor: not-allowed; }
.nv-lead-submit__spinner {
	display: flex;
	animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.nv-lead-privacy {
	text-align: center;
	font-size: 11px;
	color: #9ca3af;
	margin-top: 10px;
	margin-bottom: 0;
}
.nv-lead-success {
	text-align: center;
	padding: 20px 0;
}
.nv-lead-success__icon { font-size: 48px; margin-bottom: 12px; }
.nv-lead-success__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.nv-lead-success__text { color: #6b7280; margin-bottom: 20px; }
.nv-lead-channel-note { font-size: 11px; color: #9ca3af; margin-top: 6px; }

@media (max-width: 640px) {
	.nv-lead-modal__window { padding: 22px 18px; }
}
