/* Nabux Marketplace — front-end vendor picker (theme-adaptive; fixes white-on-light).
   Backgrounds are translucent neutrals and text uses `inherit`, so it stays readable
   on both the dark Nabux theme and any light theme. */
.nabux-offers {
	margin: 0 0 18px;
	border: 1px solid rgba(128, 128, 128, 0.22);
	border-radius: 12px;
	padding: 12px 14px;
	background: rgba(128, 128, 128, 0.06);
	color: inherit;
}
.nabux-offers__title {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 14px;
	color: inherit;
}
.nabux-offer {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: background .15s ease;
	color: inherit;
}
.nabux-offer:hover { background: rgba(128, 128, 128, 0.14); }
.nabux-offer + .nabux-offer { border-top: 1px dashed rgba(128, 128, 128, 0.22); }
.nabux-offer__radio { margin: 0; accent-color: #16a34a; }
.nabux-offer__vendor { font-weight: 600; color: inherit; }
.nabux-offer__rating { color: #00d4ff; font-weight: 700; font-size: 12px; }
.nabux-offer__stock { color: #8a93a3; font-size: 12px; }
.nabux-offer__price { margin-inline-start: auto; font-weight: 800; color: #b7ff3c; }
.nabux-offer__badge {
	background: #16a34a;
	color: #fff;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 999px;
}
.nabux-offer.is-best { background: rgba(183, 255, 60, 0.14); }

/* RTL niceties */
html[dir="rtl"] .nabux-offer__price { margin-inline-start: auto; }
