/* IPH Stock Status Badge — shared editor + front-end styles */

.iph-stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	padding: 6px 14px;
	border-radius: 999px;
	font-family: inherit;
	white-space: nowrap;
	vertical-align: middle;
}

.iph-stock__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
	flex: none;
}

/* In stock — green (matches the product page design) */
.iph-stock--in {
/* 	background: #eaf5ea; */
	color: #155427;
}
.iph-stock--in .iph-stock__dot {
	background: #1f7a35;
	box-shadow: 0 0 0 3px rgba( 31, 122, 53, 0.18 );
}

/* Out of stock — red */
.iph-stock--out {
	background: #fdECEC;
	color: #9f1818;
}
.iph-stock--out .iph-stock__dot {
	background: #d32f2f;
	box-shadow: 0 0 0 3px rgba( 211, 47, 47, 0.18 );
}

/* Alignment support */
.iph-stock.aligncenter { display: inline-flex; margin-left: auto; margin-right: auto; }
