/* ZAČETEK KODE: CSS za stiliziranje out of stock gumbov */
.add_to_cart_button.custom-out-of-stock {
    opacity: 0.5 !important;
    pointer-events: none !important;
    position: relative !important;
}

.add_to_cart_button.custom-out-of-stock::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        to bottom right,
        transparent 48.5%, brown 50%, brown 52%, transparent 53.5%
    ) !important;
    pointer-events: none !important;
}

.add_to_cart_button.custom-out-of-stock .quantity {
    display: none !important;
}
/* KONEC KODE: CSS za stiliziranje out of stock gumbov */