/* =========================================
   VYPRODANÉ PRODUKTY
   ========================================= */

.product .p.is-sold-out {
    opacity: 0.7 !important;
}

.product .p.is-sold-out > a.image {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
}

.product .p.is-sold-out > a.image img {
    filter: grayscale(100%) !important;
}

.product .p.is-sold-out > a.image::after {
    content: "VYPRODÁNO";
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 130%;
    transform: translate(-50%, -50%) rotate(-12deg);
    background: #111;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 16px 10px;
    box-sizing: border-box;
    pointer-events: none;
}

@media (max-width: 767px) {
    .product .p.is-sold-out > a.image::after {
        font-size: 15px;
        padding: 11px 8px;
    }
}
