/*
CTC Separate Stylesheet
Updated: 2026-08-02 17:15:04
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: Custom child theme for GeneratePress
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1785683704
*/

// حظر تحميل خطوط غوغل من كافة الإضافات والقوالب
add_action( 'wp_enqueue_scripts', function() {
    // قائمة بأسماء المقابض (Handles) الشهيرة لخطوط غوغل في Beaver Builder والإضافات
    $font_handles = array(
        'fl-builder-google-fonts', // Beaver Builder الرئيسي
        'pp-google-fonts',        // PowerPack for Beaver Builder
        'uabb-google-fonts',      // Ultimate Addons for Beaver Builder
        'open-sans',
        'twentytwenty-fonts'
    );

    foreach ( $font_handles as $handle ) {
        wp_dequeue_style( $handle );
        wp_deregister_style( $handle );
    }
}, 9999 );