/**
 * B2B Hybrid Wholesale Pricing - Frontend Styles
 */

/* General Badge Base */
.b2b-pricing-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

/* Specific User Custom Contract Price Badge */
.b2b-pricing-badge.b2b-user-badge {
    background-color: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    box-shadow: 0 1px 2px rgba(30, 64, 175, 0.05);
}

/* User Role Wholesale Tier Price Badge */
.b2b-pricing-badge.b2b-role-badge {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    box-shadow: 0 1px 2px rgba(6, 95, 70, 0.05);
}

/* Adjustments inside single product price wrappers */
.single-product .summary .price .b2b-pricing-badge,
.woocommerce-variation-price .price .b2b-pricing-badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    margin-left: 10px;
    position: relative;
    top: -1px;
}

/* Volume Discount Integration: Suppress volume discount table when contract price is active */
body.b2b-has-contract-price .tgp-tiered-discounts-wrapper,
.single-product:has(.b2b-user-badge) .tgp-tiered-discounts-wrapper,
.b2b-user-badge ~ .tgp-tiered-discounts-wrapper {
    display: none !important;
}

