/**
 * Woo Shared Stock — front-end styles.
 * Pre-order / backorder notice, "outline" athletic style (variant B):
 * white box, dark border, struck-through "sold out", dark-green "pre-order".
 */

.stock.wss-backorder {
	margin: 0.4em 0;
}

/* Product page badge */
.wss-preorder-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	padding: 0.5em 0.9em;
	border-radius: 10px;
	border: 2px solid #101114;
	background: #ffffff;
	color: #101114;
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	line-height: 1;
	white-space: nowrap;
	vertical-align: middle;
}

.wss-preorder-badge .wss-dot {
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: #0f7b3f;
	flex: 0 0 auto;
}

.wss-preorder-badge .wss-sold {
	color: #a1a1aa;
	font-weight: 700;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
}

.wss-preorder-badge .wss-sep {
	display: none;
}

.wss-preorder-badge .wss-open {
	margin-left: 0.4em;
	color: #0f7b3f;
	font-weight: 800;
}

/* Cart / checkout line note */
.wss-preorder-cart {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #101114;
}

.wss-preorder-cart::before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: #0f7b3f;
	display: inline-block;
	flex: 0 0 auto;
}
