/**
 * Mapro Mastershop — Shop loop customizations.
 *
 * Replaces the WooCommerce "Out of stock" / "สินค้าหมดแล้ว" badge on product
 * cards with a quote-request CTA. The site's B2B flow allows quote requests
 * regardless of stock status, so the original wording discourages valid leads.
 */

.box-image .out-of-stock-label {
    font-size: 0;
    line-height: 0;
    text-transform: none;
    background: #1976D2;
    color: #fff;
    opacity: 0.95;
}

.box-image .out-of-stock-label::after {
    content: "ขอใบเสนอราคา";
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: block;
}
