/**
 * Hide Proposed RSP - Frontend Styles
 * CSS-based hiding for better reliability
 */

/* Hide proposed RSP elements when the body has the hide-proposed-rsp class */
body.hide-proposed-rsp [data-wk-pair="proposed-rsp"],
body.hide-proposed-rsp article#wk-extra-info {
    display: none !important;
}

/* Alternative selectors for different theme implementations */
body.hide-proposed-rsp .product-extra-info [data-wk-pair="proposed-rsp"],
body.hide-proposed-rsp .info-item [data-wk-pair="proposed-rsp"],
body.hide-proposed-rsp .wk-pair[data-wk-pair="proposed-rsp"] {
    display: none !important;
}

/* Hide the entire wk-extra-info article if it's the proposed RSP container */
body.hide-proposed-rsp article[data-wk-container="true"]:has([data-wk-pair="proposed-rsp"]) {
    display: none !important;
}

/* Fallback for browsers that don't support :has() */
body.hide-proposed-rsp #wk-extra-info.product-extra-info {
    display: none !important;
}
