/**
 * Trebor - Štítky produktov
 */

/* Wrapper pre viacero štítkov */
.tst-stitky-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tst-stitok {
    padding: 4px 10px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    background-color: #2e7d32;
    line-height: 1.4;
    display: inline-block;
    width: fit-content;
}

/* Automatické štítky */
.tst-stitok-novinka {
    background-color: #1976d2;
}

.tst-stitok-zlava {
    background-color: #d32f2f;
}

.tst-stitok-vypredane {
    background-color: #616161;
}

/* Manuálne štítky cez tagy */
.tst-stitok-hit {
    background-color: #7b1fa2;
}

.tst-stitok-bio {
    background-color: #388e3c;
}

.tst-stitok-doprava-zdarma {
    background-color: #0097a7;
}

.tst-stitok-limitovane {
    background-color: #c2185b;
}

.tst-stitok-odporucame {
    background-color: #ff5722;
}

/* Pozícia pre rodičovský element */
.woocommerce ul.products li.product {
    position: relative;
}

.woocommerce div.product div.images {
    position: relative;
}

/* Skryť pôvodný WooCommerce "Sale!" badge */
.woocommerce span.onsale {
    display: none !important;
}
