/* =============================================
   PSA – Product Stock Availability
   ============================================= */

.psa-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	line-height: 1.4;
}

/* The dot must not shrink when the label wraps onto a second line. */
.psa-dot {
	display: inline-block;
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #22a447;
}

.psa-label {
	font-size: 14px;
	color: #6b6b6b;
}

.psa-status {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
}

.psa-qty {
	font-size: 14px;
	color: #6b6b6b;
}

/* ── States ──────────────────────────────────────────────── */
.psa-out-of-stock .psa-dot    { background-color: #d81e27; }
.psa-out-of-stock .psa-status { color: #d81e27; }

.psa-on-backorder .psa-dot    { background-color: #e0a02b; }
.psa-on-backorder .psa-status { color: #b5791a; }

/* ── Editor placeholder ──────────────────────────────────── */
.psa-notice {
	padding: 12px;
	border: 1px dashed #c3c4c7;
	border-radius: 6px;
	color: #6b6b6b;
	font-size: 13px;
	text-align: center;
}
