/** Buratino Store Inventory 0.7.35-dev — product badges */
:root{
    --bsi-badge-green:#4f756c;
    --bsi-badge-brown:#5a3a28;
    --bsi-badge-lime:#a8cd68;
    --bsi-badge-amber:#aa742e;
}

/* Keep WoodMart's native position/container, only normalize BSI labels to the site's UX. */
.product-labels .bsi-product-label{
    width:auto!important;
    min-width:0!important;
    max-width:180px!important;
    height:auto!important;
    min-height:0!important;
    padding:6px 9px!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    font-size:11px!important;
    line-height:1.15!important;
    font-weight:600!important;
    letter-spacing:0!important;
    text-transform:none!important;
    white-space:nowrap!important;
}
.product-labels .bsi-product-label--sale{
    background:var(--bsi-badge-lime)!important;
    color:#26301d!important;
}
.product-labels .bsi-product-label--low-stock{
    background:var(--bsi-badge-amber)!important;
    color:#fff!important;
}
.product-labels .bsi-product-label--hit{
    background:var(--bsi-badge-brown)!important;
    color:#fff!important;
}
.product-labels .bsi-product-label--best-price{
    background:var(--bsi-badge-green)!important;
    color:#fff!important;
}

/* Long labels should stay compact on mobile instead of becoming round WoodMart badges. */
@media(max-width:767px){
    .product-labels .bsi-product-label{
        max-width:150px!important;
        padding:5px 7px!important;
        font-size:10px!important;
    }
}

/* BSI UX: the first badge starts exactly from the image corner. */
.bsi-has-product-badges .product-labels{
    top:0!important;
    inset-inline-start:0!important;
    left:0!important;
}
.bsi-has-product-badges .product-labels .bsi-product-label:first-child{
    margin-top:0!important;
}
