/* ============================================
   CENY PROMOCYJNE – IAI / IdoSell
   ============================================ */

/* 1. Globalna zmienna CSS dla ceny promocyjnej */
:root {
    --color-promo-price: #092dbc;
}

/* 2. Ceny promocyjne – wszędzie (listing, karta, koszyk, omnibus) */
.price_promo,
.price_promo *,
.promo_price,
.promo_price *,
.price.--promo,
.price.--promo *,
.basket .--color,
.price_percent,
.--omnibus-higher .price.--main,
.--omnibus-higher .price_percent {
    color: #092dbc !important;
}

/* ============================================
   LABELKI – tekst biały i tło kolorowe
   ============================================ */

/* Tekst wszystkich labeli – biały */
.label,
.label span,
.label strong,
.label_icons,
.label_icons span,
.label_icons strong {
    color: #ffffff !important;
}

/* Tylko label PROMOCJA – tło niebieskie */
.label.--promo,
.label.--promo span,
.label.--promo strong {
    background-color: #092dbc !important;
    color: #ffffff !important; /* Tekst biały */
}

/* Label NOWOŚĆ – tło pomarańczowe */
.label.--new,
.label.--new span,
.label.--new strong {
    background-color: #ff9900 !important;
    color: #ffffff !important;
}

/* Label OKAZJA – tło czerwone */
.label.--sale,
.label.--sale span,
.label.--sale strong {
    background-color: #ff0000 !important;
    color: #ffffff !important;
}