/*
 * Parmis Commerce Connector — deliberate audience visibility helpers.
 * These selectors do nothing unless an administrator explicitly assigns a PCC class
 * to an Elementor/Woodmart element. They do not implement pricing or benefit rules.
 */
body:not(.pcc-auth-guest) .pcc-only-guest,
body:not(.pcc-auth-logged-in) .pcc-only-logged-in,
body:not(.pcc-customer) .pcc-only-customer,
body:not(.pcc-tier-silver) .pcc-only-silver,
body:not(.pcc-tier-gold) .pcc-only-gold,
body:not(.pcc-tier-platinum) .pcc-only-platinum,
body:not(.pcc-tier-gold):not(.pcc-tier-platinum) .pcc-only-gold-platinum {
    display: none !important;
}

body.pcc-auth-guest .pcc-hide-guest,
body.pcc-auth-logged-in .pcc-hide-logged-in,
body.pcc-customer .pcc-hide-customer,
body.pcc-tier-silver .pcc-hide-silver,
body.pcc-tier-gold .pcc-hide-gold,
body.pcc-tier-platinum .pcc-hide-platinum {
    display: none !important;
}
