/**
 * jp-508-shop-software-remove-buttons.css — remove the two unlinked
 *  "BERATUNG VEREINBAREN" buttons on the Shop-Software landing page per
 *  client review feedback (C05, JP-508).
 *
 * Page-scoped (not widget-scoped) — the same `.jp446-cta` and
 *  `.wawi-tutorial-section__content::after` pseudo button are used on
 *  other pages where the CTA IS the intended affordance. We only suppress
 *  them on /de/shop-software/ + its English twin /en/ecommerce-platform/.
 *
 * Live: https://dev-jtl-nguyenvtk.betterscale.dev/de/shop-software/
 *       https://dev-jtl-nguyenvtk.betterscale.dev/en/ecommerce-platform/
 * Jira: JP-508 ([C05] /de/shop-software/ — Button not linked)
 *
 * Client note (verbatim): "Beratung vereinbaren button under community
 *  logo slider to be removed; Join the JTL ecosystem button under
 *  Success Story to be removed". Both buttons on this page actually
 *  carry the same "BERATUNG VEREINBAREN" label — the second one is a
 *  CSS ::after pseudo on `.wawi-tutorial-section__content` (defined in
 *  custom-clone.css L10291) which is why it has no href and matches
 *  the ticket title "Button not linked".
 */

/* Button 1: community section "Wer mit uns skaliert" — `button.jp446-cta`
 * lives inside `.product-company-section`. Hide the whole wrap so the
 * surrounding spacing collapses cleanly. */
body.page-id-89045 .product-company-section .jp446-cta-wrap,
body.page-id-89045 .product-company-section .jp446-cta,
body.page-id-262958 .product-company-section .jp446-cta-wrap,
body.page-id-262958 .product-company-section .jp446-cta {
    display: none !important;
}

/* Button 2: "BERATUNG VEREINBAREN" pseudo on the wawi-tutorial-section
 * (the section the client called "Success Story" in the ticket — the
 * "So funktioniert der modernste Tierfachhandel" Megazoo card). Must
 * beat the (0,3,2) rule at custom-clone.css L10291
 * (`body:not(.home) section.wawi-tutorial-section
 *   .wawi-tutorial-section__content::after`). Adding page-id to reach (0,4,2). */
body.page-id-89045:not(.home) section.wawi-tutorial-section .wawi-tutorial-section__content::after,
body.page-id-262958:not(.home) section.wawi-tutorial-section .wawi-tutorial-section__content::after {
    content: none !important;
    display: none !important;
}

/* Button 3: "JOIN THE JTL ECOSYSTEM" pseudo on the testimonial-single
 * section (the client also called this "Success Story" — both modules
 * are testimonial-style cards on this page). Custom-clone.css L4346
 * paints `body:not(.home) section.testimonial-single-product-landing
 * .testimonial-single-content-block::after { content: "JOIN THE JTL
 * ECOSYSTEM" }` at (0,3,2). Beat with page-id chain → (0,4,2). */
body.page-id-89045:not(.home) section.testimonial-single-product-landing .testimonial-single-content-block::after,
body.page-id-262958:not(.home) section.testimonial-single-product-landing .testimonial-single-content-block::after {
    content: none !important;
    display: none !important;
}
