/* ===== PRIX EN ROUGE POUR TOUS LES PRODUITS ===== */

/* 1. PRODUITS NORMAUX SUR LES PAGES BOUTIQUE */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-Price-amount,
.woocommerce-loop-product__price {
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* 2. PRODUITS DANS LE CARROUSEL */
.wpsf-product-price,
.wpsf-product .price,
.swiper-slide .price {
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* 3. PRODUITS INDIVIDUELS SUR PAGE PRODUIT */
.single-product .price,
.product .price,
.woocommerce-Price-amount {
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* Différents états avec nuances de vert */
.wpsf-product .condition-box.premium,
.swiper-slide .condition-box.premium {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.wpsf-product .condition-box.good,
.swiper-slide .condition-box.good {
    background: linear-gradient(135deg, #20c997, #17a2b8) !important;
}

.wpsf-product .condition-box.fair,
.swiper-slide .condition-box.fair {
    background: linear-gradient(135deg, #17a2b8, #6f42c1) !important;
}

/* Positionnement dans le carousel */
.wpsf-product-info,
.swiper-slide .product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* S'assurer que le texte de l'état reste vert et non rouge */
.wpsf-product .condition-box,
.swiper-slide .condition-box {
    color: white !important; /* Important pour écraser toute autre couleur */
}

/* Styles spécifiques pour WooCommerce carousel */
.wpsf-product .woocommerce-product-attributes .condition,
.swiper-slide .product_condition {
    background: #28a745 !important;
    color: white !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    margin-top: 10px !important;
}

/* Si l'état est dans un élément <span> spécifique */
.wpsf-product span.condition,
.swiper-slide span.condition {
    background: #28a745 !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin: 5px 0 !important;
}

/* Pour les attributs de produit */
.wpsf-product .product_meta .condition,
.swiper-slide .woocommerce-product-attributes .condition {
    background: #28a745 !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
}