/* Product stock availability display */
@keyframes iws-inventory-pulse {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(2.5);
	}
}

.stock.in_stock,
.stock.low_stock,
.stock.on_backorder {
	display: flex !important;
	align-items: center;
	gap: 8px;
}

.iws-stock-indicator {
	position: relative;
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.iws-stock-indicator::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: inherit;
	animation: iws-inventory-pulse 2s linear infinite;
}

.stock.in_stock .iws-stock-indicator,
.stock.low_stock .iws-stock-indicator {
	background: #54c63a;
}

.stock.on_backorder .iws-stock-indicator {
	background: #dba617;
}

.stock.in_stock,
.stock.low_stock {
	color: #008500 !important;
	font-weight: 600 !important;
}

.stock.on_backorder {
	color: #dba617 !important;
	font-weight: 600 !important;
}

.stock.out_of_stock {
	color: rgb(221, 29, 29) !important;
	font-weight: 600 !important;
}
