/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* ============================================================
   Kepro custom (2026-05-04)
   - Bollino "Nuovo" → cerchio nero "NEW" testo bianco
   - Prezzi → nero (no più rosa)
   ============================================================ */

/* --- Badge NEW: cerchio nero, testo bianco "NEW" --- */
.product-labels .product-label.new {
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    /* nascondiamo il testo originale ("Nuovo"/"New") e mostriamo "NEW" */
    font-size: 0 !important;
}
.product-labels .product-label.new::before {
    content: "NEW";
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #fff;
}

@media (max-width: 576px) {
    .product-labels .product-label.new {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .product-labels .product-label.new::before {
        font-size: 10px;
    }
}

/* --- Prezzo prodotto: forziamo nero --- */
.price,
.price .amount,
.price ins,
.price ins .amount,
.price bdi,
.woocommerce-Price-amount,
.woocommerce-Price-amount bdi,
.product .price,
.product .price .amount,
.products .product .price,
.products .product .price .amount,
.summary .price,
.summary .price .amount,
.wd-product .price,
.wd-product .price .amount {
    color: #000 !important;
}

/* Fix sold out che va a capo male (sold o / ut) — il tema base ha word-break:break-all */
.product-labels .product-label.out-of-stock {
    word-break: keep-all !important;
    white-space: nowrap !important;
}
