/* Wspólne style dla wszystkich etykiet */
.label_icons .label {
    font-size: 1rem;
    margin-right: 2px;
    margin-bottom: 2px;
    padding: .4rem 1.1rem .2rem;
    border-radius: 0;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    font-family: 'Overpass Mono','Open sans',"Arial",sans-serif;
    font-weight: 700;
}

/* Promocja - stonowany czerwony */
.label_icons .label.--promo {
    background-color: #000000;
    color: #ffffff;
}

/* Polecany - UKRYTY */
.label_icons .label.--distinguished {
    display: none !important;
}

/* Bestseller - żółty */
.label_icons .label.--bestseller {
    background-color: #8da499;
    color: #ffffff;
}

/* Nowość - UKRYTA */
.label_icons .label.--new {
    display: none !important;
}

/* Przecena - EDYTOWALNA */
.label_icons .label.--discount {
    background-color: #ff3939; /* TUTAJ ZMIEŃ KOLOR TŁA */
    color: #ffffff; /* TUTAJ ZMIEŃ KOLOR TEKSTU */
    font-size: 0; /* ukrywa oryginalny tekst */
}
 
.label_icons .label.--discount::before {
    content: "BLACK FRIDAY"; /* TUTAJ ZMIEŃ NAZWĘ ETYKIETY */
    font-size: 1rem;
    display: block;
}
