/**
Theme Name: THANX GOD
Author: Amnaye NHAS
Author URI: https://www.thanxgod.com
Description: A theme designed for THANX GOD I\'M A VIP.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thanx-god
Template: astra
*/

.out-stock-label{
    visibility: hidden;
}

.out-stock-label::after{
    content: "VENDU"; 
	margin-top: -10px;
    visibility: visible !important;
	background-color: white;
	opacity:0.7;
  padding:5%;
	position: absolute; 
  left: 0; 
  right: 0;
	font-family: "Open Sans";
	font-weight: normal;
	color: #993333
}

p.out-of-stock{
    visibility: hidden;
}
p.out-of-stock::before{
	
	visibility: visible !important;
	color: #993333;
  content: "Vendu";
}





/**
 * Change "Out Of Stock" text added on WooCommerce Product Grid.
 *
 * @return String
 */
function your_prefix_change_out_stock_string() {
	return __( 'Your Alternate Text', 'your-text-domain' );
}
add_filter( 'astra_woo_shop_out_of_stock_string', 'your_prefix_change_out_stock_string' );