/* Mini Booster - Call for Price Styles */
/* Minimal CSS that only affects price display without impacting layout */

/* Call for price text - simple inline text replacement */
.call-for-price-text {
    color: #666;
    font-size: inherit;
    font-weight: normal;
    display: inline;
}

/* Call for price button - minimal styling to match existing buttons */
.call-for-price-button {
    /* Let it inherit the existing button styles from WooCommerce */
    /* Only add the green color theme */
    background-color: #4CAF50;
    color: #fff;
}

.call-for-price-button:hover {
    background-color: #45a049;
    color: #fff;
    text-decoration: none;
}

/* Remove any forced layout changes - let WooCommerce handle the layout */
.woocommerce ul.products li.product .call-for-price-button {
    /* No forced display, margin, padding, or sizing */
    /* Inherits from WooCommerce button class */
}

/* Price area text styling */
.price .call-for-price-text,
.woocommerce ul.products li.product .price .call-for-price-text {
    color: #666;
    font-size: 0.9em;
}