/**
 * Product page stock message overrides
 * Matches the styling from products grid shortcode
 */

/* Custom stock messages styling */
.jwell-custom-stock {
    font-weight: 500 !important;
    padding: 0px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* In stock styling */
.jwell-custom-stock.in-stock {
    color: #2e7d32 !important;
}

/* Restock/backorder styling */
.jwell-custom-stock.jwell-restock {
    color: #f57c00 !important;
    font-weight: 600 !important;
}

/* Out of stock styling */
.jwell-custom-stock.jwell-out-of-stock {
    color: #c62828 !important;
    font-weight: 600 !important;
}

/* Hide original WooCommerce stock message completely */
.woocommerce-variation-availability .stock:not(.jwell-custom-stock-message) {
    display: none !important;
}

/* Make sure our custom styling takes precedence */
.woocommerce-variation-availability .jwell-custom-stock {
    display: inline-block !important;
    margin-bottom: 10px !important;
}