/* Awesome CSS Code: WC Archive Category | 14/08/2026 18:35 */

/* --- Code: Custom WooCommerce Promo Badge --- */
/* On desactive le Badge Natif via CSS egalement */
.onsale {
	display: none !important;
}

/* Own Loop Product Promo Badge */
.woocommerce ul.products li.product {
    position: relative; 
}
.woocommerce ul.products li.product .ck-custom-loop-product-promo-badge {
    position: absolute;
    top: 10px;      
    left: 10px; 
    z-index: 99;    
    background-color: #6C2DFF; 
    color: #ffffff;
    font-weight: bold;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    pointer-events: none;
}

/* Own Single Product Promo Badge */
.woocommerce div.product .woocommerce-product-gallery__image .ck-custom-single-product-promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 999; 
    background-color: #6C2DFF;
    color: #ffffff;
    font-weight: bold;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    pointer-events: none;
}

/* --- Code: WooCommerce Loop Product --- */
/* Loop Product Image Container */
.ck-woocommerce-loop-product-image-container {
    width: 100%;
    display: block;
	border-radius: 5px;
    overflow: hidden !important;
}
.ck-woocommerce-loop-product-image-container img {
    width: 100% !important;
    height: auto !important;
    display: block;
	aspect-ratio: 1 / 1;
    transition: transform 0.5s ease !important;
}

/* Loop Product Image */
.products .product img {
    display: block !important;
    margin-top: 0px !important;
    margin-right: auto !important;
    margin-bottom: 0px !important;
    margin-left: auto !important;
}


/* Loop Product Effet Zoom On Hover */
.products .product:hover img {
    transform: scale(1.1);
	width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
}


/* Loop Product Details Container */
.ck-woocommerce-loop-product-details-container {
    padding-top: 6px;
}

/* Loop Product Details */
.products .product {
    text-align: left !important;
	font-size: 14px;
	margin-bottom: 20px !important;
}

/* Loop Product Title */
.products .product .woocommerce-loop-product__title, 
.products .product .wc-block-grid__product-title {
    font-size: 14px !important;
	margin-bottom: 0px !important;
}


/* Loop Product Price */
.products .product .price {
    color: #212121 !important;
    font-weight: 400;
	margin-top: 0px;
	font-size: 13.5px;
}
.dark .products .product .price {
	color: #ffffff !important;
}
/* Prix baré */
.products .product .price del {
    opacity: 1;
}
/* Prix Promo */
.products li.product .price ins {
    font-weight: 600 !important;
}


ul.products::before, 
ul.products::after {
    display: none;
}
