/* Custom styles for the countdown timer on archive pages */
.countdown-wrapper-archive {
    position: absolute;
    bottom: 25px;
    width: 100%;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 10;
}
@media (max-width: 768px) {
    span.onsale.countdown {
        font-size: 0.7em !important;
    }
}
.onsale.countdown {
    font-weight: bold;
    width: 100%;
    font-size: 14px;
}

.inside-wc-product-image {
    position: unset;
}

.wc-product-image {
    position: relative;
}

.wc-product-image img {
    display: block;
    max-width: 100%;
}


.sale-perc {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    background-image: url(../images/sale.svg); /* Tło SVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top; /* Tło umieszczone w lewym górnym rogu */
    width: 50px; /* Szerokość SVG */
    height: 100%; /* Wysokość SVG */
    max-height: 50px;
}

.sale-perc-text {
    font-weight: bold;
    font-size: 1.1em;
    color: #fff;
    text-align: center;
    line-height: 1.5; /* Ustawienie liniowej wysokości dla tekstu */
}

