.npd { position: relative; }

.npd__list {
	position: absolute;
	z-index: 40;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	max-height: 280px;
	margin: 0;
	padding: 6px;
	overflow-y: auto;
	list-style: none;
	border: 1px solid var(--npd-border, #e5e5e5);
	border-radius: var(--npd-radius, 16px);
	background: var(--npd-bg, #fff);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
}

.npd__option {
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--npd-ink, #1a1a1a);
	font-size: var(--npd-font, .875rem);
	line-height: 1.4;
	cursor: pointer;
}

.npd__option[aria-selected="true"],
.npd__option:hover { background: var(--npd-hover, #f5f5f5); }

.npd__note {
	padding: 10px 12px;
	color: var(--npd-muted, #767676);
	font-size: var(--npd-font, .875rem);
	line-height: 1.4;
}

.npd-hidden { display: none !important; }

/* Відділення: кнопка з обраним пунктом і панель «пошук + повний перелік» */
.npd--select .npd__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid var(--npd-border, #e5e5e5);
	border-radius: var(--npd-radius, 16px);
	background: var(--npd-bg, #fff);
	color: var(--npd-ink, #1a1a1a);
	font: inherit;
	font-size: var(--npd-font, .875rem);
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
}

.npd--select .npd__toggle.is-empty { color: var(--npd-muted, #767676); }

.npd--select .npd__toggle[aria-expanded="true"] { border-color: var(--npd-ink, #1a1a1a); }

.npd__chevron {
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .15s;
}

.npd--select .npd__toggle[aria-expanded="true"] .npd__chevron { transform: translateY(3px) rotate(-135deg); }

.npd__panel {
	position: absolute;
	z-index: 40;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	padding: 8px;
	border: 1px solid var(--npd-border, #e5e5e5);
	border-radius: var(--npd-radius, 16px);
	background: var(--npd-bg, #fff);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
}

.npd__panel .npd__search {
	width: 100%;
	margin: 0 0 6px;
	padding: 12px 16px;
	border: 1px solid var(--npd-border, #e5e5e5);
	border-radius: 12px;
	font-size: var(--npd-font, .875rem);
}

/* усередині панелі список уже не спливає — він частина панелі */
.npd__panel .npd__list {
	position: static;
	max-height: 320px;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
