/**
 * WooCommerce Backorder Badge styles
 */

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
}

.wc-backorder-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

/* Offset when a sale badge is also present */
.woocommerce ul.products li.product .onsale + .wc-backorder-badge,
.woocommerce ul.products li.product .onsale ~ .wc-backorder-badge {
    top: 48px;
}

.wc-backorder-badge__label {
    display: block;
}

.wc-backorder-badge__date {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.95;
}

/* Single product page */
.wc-backorder-ship-date {
    margin: 10px 0 15px;
    padding: 10px 14px;
    background: #fff8e1;
    border-left: 4px solid #ff9800;
    font-size: 14px;
}

/* Responsive tweak */
@media (max-width: 480px) {
    .wc-backorder-badge {
        font-size: 10px;
        padding: 4px 7px;
    }

    .wc-backorder-badge__date {
        font-size: 9px;
    }
}
