/* Minimal base styling so the chips/dropdown work on any theme. Themes that
   define .chips / .chip (like the NDM storefront themes) take over completely. */
.ndm-pa .chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.ndm-pa .chip {
	border: 1px solid currentColor;
	padding: 8px 14px;
	font-size: 12px;
	cursor: pointer;
	background: transparent;
	color: inherit;
}
.ndm-pa .chip[aria-pressed="true"] {
	outline: 2px solid currentColor;
}
.ndm-pa .ndm-pa-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.75;
}
.ndm-pa .ndm-pa-select {
	display: block;
	width: 100%;
	max-width: 420px;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	cursor: pointer;
}
/* The native option list ignores the page theme: on dark themes the options
   inherit light text onto the OS's white popup and become invisible. Pin
   readable colors on the popup itself. */
.ndm-pa .ndm-pa-select option {
	background: #ffffff;
	color: #111111;
}
.ndm-pa .ndm-pa-price-note {
	margin-top: 8px;
	font-size: 13px;
	font-weight: 600;
}
