/* WC Out of Stock Badge v1.0.0 */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
    position: relative;
}

.wcosb-badge {
    position: absolute;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--wcosb-badge-bg, #c62828);
    color: var(--wcosb-badge-color, #ffffff);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    pointer-events: none;
}

.wcosb-top-right { top: 12px; right: 12px; }
.wcosb-top-left { top: 12px; left: 12px; }
.wcosb-bottom-right { bottom: 12px; right: 12px; }
.wcosb-bottom-left { bottom: 12px; left: 12px; }

.woocommerce ul.products li.product .wcosb-badge {
    top: 12px;
}

.woocommerce ul.products li.product .wcosb-bottom-right,
.woocommerce ul.products li.product .wcosb-bottom-left {
    bottom: auto;
    top: 12px;
}

/* Divi/Woo modules often wrap product images differently. This helps keep the badge visible. */
.et_pb_wc_related_products ul.products li.product,
.et_pb_shop ul.products li.product {
    position: relative;
    overflow: visible;
}

@media (max-width: 767px) {
    .wcosb-badge {
        min-width: 72px;
        padding: 6px 10px;
        font-size: 11px;
    }
}
