/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.0
 Description:  Astra child theme with custom stock badges
*/

/* Stock badge overlay on product images */
.astra-shop-thumbnail-wrap,
li.product .woocommerce-loop-product__link {
	position: relative;
}

.stock-badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	border-radius: 3px;
	z-index: 2;
	pointer-events: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.stock-badge.in-stock {
	background-color: rgba(56, 130, 60, 0.55);
	color: rgba(255, 255, 255, 0.9);
}

.stock-badge.backorder {
	background-color: rgba(190, 115, 0, 0.55);
	color: rgba(255, 255, 255, 0.9);
}

.stock-badge.out-of-stock {
	background-color: rgba(170, 40, 40, 0.55);
	color: rgba(255, 255, 255, 0.9);
}
