/**
 * Fix: Hide stock text inside variation swatches
 * 
 * Problem: Woo Variation Swatches plugin injects <p class="stock">Neturime</p>
 *          INSIDE each radio button label (variable-item-radio-value-wrapper)
 * 
 * Solution: Hide stock text that appears inside swatch items
 *           Keep stock info visible in the proper variation details area
 */

/* Hide stock text injected inside each swatch radio button */
.variable-item-radio-value-wrapper .stock,
.variable-item-radio-value-wrapper p.stock {
    display: none !important;
}

/* Also hide in other swatch wrapper types (color, button, image swatches) */
.variable-item-contents .stock {
    display: none !important;
}

/* Keep stock visible in the proper variation info area */
.single_variation_wrap .woocommerce-variation-availability .stock {
    display: block !important;
}
