/**
 * CB WooCommerce Extensions - Bundle1000 Styles
 *
 * Styles for Bundle1000 product variations
 * Uses CSS variables from variables.css for theming
 *
 * @see variables.css
 * @package CB_WooCommerce_Extensions
 * @version 2.1.0
 */

/* Hide elements for Bundle1000 variations */
.rbwce-bundle1000-hide {
    display: none !important;
}

/* Hide price elements when Bundle1000 is selected */
.rbwce-bundle1000-active .woocommerce-variation-price,
.rbwce-bundle1000-active .single_variation .price {
    display: none !important;
}

/* Bundle1000 contact button styling */
.rbwce-bundle1000-contact-button {
    background: var(--rbwce-bundle1000) !important;
    border-color: var(--rbwce-bundle1000) !important;
    color: white !important;
    font-weight: bold !important;
}

.rbwce-bundle1000-contact-button:hover {
    background: var(--rbwce-bundle1000-dark) !important;
    border-color: var(--rbwce-bundle1000-dark) !important;
}