/* ============================================
   WooCommerce Labels Frontend Styles
   ============================================ */

/* Product label container */
.wle-product-labels {
	display: flex;
	flex-direction: row;
	gap: 8px;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
}

/* Individual label styles */
.wle-product-loop-label {
	display: inline-block;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wle-product-loop-label.wle-sale-label,
.wle-product-loop-label.wle-new-release-label {
	border-radius: 5px;
}

/* WooCommerce product image container positioning */
.woocommerce ul.products li.product .wle-product-labels,
.woocommerce-page ul.products li.product .wle-product-labels {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
}

.elementor-widget-woocommerce-products .product,
.elementor-widget-wc-products .product {
	position: relative;
}

/* Hide default WooCommerce sale badges */
.ast-on-card-button,
.ast-onsale-card {
	display: none !important;
}

/* Responsive adjustments for product loop labels */
@media (max-width: 768px) {
	.wle-product-loop-label {
		font-size: 10px;
		padding: 6px 10px;
	}
	
	.wle-product-labels {
		top: 5px;
		left: 5px;
		gap: 5px;
	}
}
