/*
 * EXELIXIS — Product Stock Preview Badge
 */

/* Make the product card/image a positioning context. */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.products .product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .product-image,
.woocommerce ul.products li.product {
	position: relative;
}

/* Stock badge: bottom-right corner. */
.exx-stock-badge {
	position: absolute;
	right: 8px;
	bottom: 8px;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	z-index: 5;
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.9),
		0 2px 6px rgba(0, 0, 0, 0.15);
	text-transform: none;
	letter-spacing: 0.2px;
	pointer-events: none;
	white-space: nowrap;
}

.exx-stock-badge.status-instock {
	background: #22c55e;
}

.exx-stock-badge.status-onbackorder {
	background: #f59e0b;
}

.exx-stock-badge.status-outofstock {
	background: #ef4444;
}
