/* All visual styling on the ID — one place, no specificity conflict */
#cc-bulk-preview {
    display: none; /* hidden by default */
    margin-top: 10px;
    padding: 8px 12px;
    background: #f0f7f3;
    border-left: 4px solid #0a7a3d;
    border-radius: 3px;
    font-size: 0.95em;
    color: #0a7a3d;
}

/* JS removes this class to show, adds it to hide */
#cc-bulk-preview:not(.is-hidden) {
    display: block;
}

#cc-bulk-preview .cc-bulk-price {
    font-weight: 600;
}

/**
 * Bulk Discount Notice (Initial Message)
 */
.cc-bulk-notice {
    padding: 10px;
    margin: 15px 0;
    background-color: #f0f8ff;
    border-left: 4px solid #2271b1;
    border-radius: 3px;
    font-size: 0.95em;
    color: #0a4a8f;
}

/**
 * Product Option Dropdown Styling
 */
.ccbp-product-options {
    margin-bottom: 16px;
}

.ccbp-product-option {
    margin-bottom: 8px;
}

.ccbp-product-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.ccbp-product-option input[type="checkbox"] {
    flex-shrink: 0;
}

/**
 * Note/Helper Text
 */
.bulk-pricing-note {
    margin-top: 6px;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}