SELECT 
  pf.feature_id, 
  pf.company_id, 
  pf.feature_type, 
  pf.parent_id, 
  pf.display_on_product, 
  pf.display_on_catalog, 
  pf.display_on_header, 
  cscart_product_features_descriptions.description, 
  cscart_product_features_descriptions.internal_name, 
  cscart_product_features_descriptions.lang_code, 
  cscart_product_features_descriptions.prefix, 
  cscart_product_features_descriptions.suffix, 
  pf.categories_path, 
  cscart_product_features_descriptions.full_description, 
  pf.status, 
  pf.comparison, 
  pf.position, 
  pf.purpose, 
  pf.feature_style, 
  pf.filter_style, 
  pf.feature_code, 
  pf.timestamp, 
  pf.updated_timestamp, 
  pf_groups.position AS group_position, 
  cscart_product_features_values.value, 
  cscart_product_features_values.variant_id, 
  cscart_product_features_values.value_int, 
  pf.mdc_feature 
FROM 
  cscart_product_features AS pf 
  LEFT JOIN cscart_product_features AS pf_groups ON pf.parent_id = pf_groups.feature_id 
  LEFT JOIN cscart_product_features_descriptions AS pf_groups_description ON pf_groups_description.feature_id = pf.parent_id 
  AND pf_groups_description.lang_code = 'en' 
  LEFT JOIN cscart_product_features_descriptions ON cscart_product_features_descriptions.feature_id = pf.feature_id 
  AND cscart_product_features_descriptions.lang_code = 'en' 
  INNER JOIN cscart_product_features_values ON cscart_product_features_values.feature_id = pf.feature_id 
  AND cscart_product_features_values.product_id = 347 
  AND cscart_product_features_values.lang_code = 'en' 
WHERE 
  1 = 1 
  AND pf.feature_type != 'G' 
  AND pf.status IN ('A') 
  AND (
    pf_groups.status IN ('A') 
    OR pf_groups.status IS NULL
  ) 
  AND pf.company_id IN (0, 3) 
  AND pf.display_on_product = 'Y' 
  AND (
    pf.categories_path = '' 
    OR ISNULL(pf.categories_path) 
    OR FIND_IN_SET(335, pf.categories_path) 
    OR FIND_IN_SET(340, pf.categories_path)
  ) 
GROUP BY 
  pf.feature_id 
ORDER BY 
  group_position asc, 
  pf_groups_description.description asc, 
  pf_groups.feature_id asc, 
  pf.position asc, 
  cscart_product_features_descriptions.description asc, 
  pf.feature_id asc

Query time 0.00149

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "62.65"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_product_features_values",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "fl",
                "lang_code",
                "product_id",
                "fpl",
                "idx_product_feature_variant_id"
              ],
              "key": "product_id",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 27,
              "rows_produced_per_join": 26,
              "filtered": "99.76",
              "cost_info": {
                "read_cost": "21.00",
                "eval_cost": "5.39",
                "prefix_cost": "26.40",
                "data_read_per_join": "20K"
              },
              "used_columns": [
                "feature_id",
                "product_id",
                "variant_id",
                "value",
                "value_int",
                "lang_code"
              ],
              "attached_condition": "(`danishecarter_25_march`.`cscart_product_features_values`.`lang_code` = 'en')"
            }
          },
          {
            "table": {
              "table_name": "pf",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "company_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "danishecarter_25_march.cscart_product_features_values.feature_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 2,
              "filtered": "8.80",
              "cost_info": {
                "read_cost": "26.93",
                "eval_cost": "0.47",
                "prefix_cost": "58.72",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "feature_id",
                "feature_code",
                "company_id",
                "purpose",
                "feature_style",
                "filter_style",
                "feature_type",
                "categories_path",
                "parent_id",
                "display_on_product",
                "display_on_catalog",
                "display_on_header",
                "status",
                "position",
                "comparison",
                "timestamp",
                "updated_timestamp",
                "mdc_feature"
              ],
              "attached_condition": "((`danishecarter_25_march`.`pf`.`feature_type` <> 'G') and (`danishecarter_25_march`.`pf`.`status` = 'A') and (`danishecarter_25_march`.`pf`.`company_id` in (0,3)) and (`danishecarter_25_march`.`pf`.`display_on_product` = 'Y') and ((`danishecarter_25_march`.`pf`.`categories_path` = '') or isnull(`danishecarter_25_march`.`pf`.`categories_path`) or find_in_set(335,`danishecarter_25_march`.`pf`.`categories_path`) or find_in_set(340,`danishecarter_25_march`.`pf`.`categories_path`)))"
            }
          },
          {
            "table": {
              "table_name": "pf_groups",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "danishecarter_25_march.pf.parent_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "19.00",
              "cost_info": {
                "read_cost": "2.37",
                "eval_cost": "0.09",
                "prefix_cost": "61.57",
                "data_read_per_join": "543"
              },
              "used_columns": [
                "feature_id",
                "status",
                "position"
              ],
              "attached_condition": "<if>(found_match(pf_groups), ((`danishecarter_25_march`.`pf_groups`.`status` = 'A') or isnull(`danishecarter_25_march`.`pf_groups`.`status`)), true)"
            }
          },
          {
            "table": {
              "table_name": "pf_groups_description",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "danishecarter_25_march.pf.parent_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.45",
                "eval_cost": "0.09",
                "prefix_cost": "62.11",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "feature_id",
                "description",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_product_features_descriptions",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "danishecarter_25_march.cscart_product_features_values.feature_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.45",
                "eval_cost": "0.09",
                "prefix_cost": "62.65",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "feature_id",
                "description",
                "internal_name",
                "full_description",
                "prefix",
                "suffix",
                "lang_code"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

feature_id company_id feature_type parent_id display_on_product display_on_catalog display_on_header description internal_name lang_code prefix suffix categories_path full_description status comparison position purpose feature_style filter_style feature_code timestamp updated_timestamp group_position value variant_id value_int mdc_feature
1055 0 S 0 Y N N Ad Online since Ad Online since en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616121 1744616121 24086 mdc_ad_online_since
1092 0 N 0 Y N N Battery capacity Battery capacity en 340 A N 0 find_products text slider 1744617001 1744617001 25608 1250.00 mdc_battery_capacity
1094 0 S 0 Y N N Battery Manufacturers Battery Manufacturers en 340 A N 0 find_products text checkbox 1744617002 1744617002 25615 mdc_batterymanufacturers
1093 0 S 0 Y N N Battery Positions Battery Positions en 340 A N 0 find_products text checkbox 1744617001 1744617001 25610 mdc_batterypositions
1041 0 S 0 Y N N Categories Categories en 336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744615592 1744626079 24139 mdc_categories
1096 0 S 0 Y N N Circuit Circuit en 340 A N 0 find_products text checkbox 1744617002 1744617002 25621 mdc_circuit
1046 0 N 0 Y N N Construction Year Construction Year en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text slider 1744616119 1744619141 26048 2020.00 mdc_construction_year
1091 0 N 0 Y N N Corridors Corridors en 340 A N 0 find_products text slider 1744617001 1744617001 25600 18.00 mdc_corridors
1050 0 S 0 Y N N Country Country en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616120 1744616120 23864 mdc_countryversion
1047 0 S 0 Y N N Damage Unrepaired Damage Unrepaired en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616119 1744616119 23804 mdc_damageunrepaired
1087 0 S 0 Y N N Frame Materials Frame Materials en 340 A N 0 find_products text checkbox 1744617000 1744617000 25583 mdc_framematerials
1088 0 S 0 Y N N Frame Shapes Frame Shapes en 340 A N 0 find_products text checkbox 1744617000 1744617000 25586 mdc_frameshapes
1089 0 S 0 Y N N Frame Sizes Frame Sizes en 340 A N 0 find_products text checkbox 1744617000 1744617000 25593 mdc_framesizes
1044 0 S 0 Y N N Fuels Fuels en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616118 1744616118 23796 mdc_fuels
1144 0 S 0 Y N N Gear Types Gear Types en 340 A N 0 find_products text checkbox 1744876618 1744876618 26063 mdc_bikegeartypes
1143 0 N 0 Y N N Gears Gears en 340 A N 0 find_products text slider 1744875369 1744875369 26060 5.00 mdc_num_of_gears
1097 0 S 0 Y N N Gender Gender en 340 A N 0 find_products text checkbox 1744617002 1744617002 25627 mdc_gender
1056 0 E 0 Y N N Makers Makers en 336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 organize_catalog brand checkbox 1744616886 1744616975 24639 mdc_makers
1052 0 N 0 Y N N MDC Weight MDC Weight en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text slider 1744616121 1744619147 24066 1000.00 mdc_weight
1063 0 N 0 Y N N Mileage Mileage en 337,338,340,342,345,347,348,343 A N 0 find_products text slider 1744616985 1744788263 26049 156352.00 mdc_mileage
1070 0 S 0 Y N N Mobilede Colors Mobilede Colors en 337,338,340,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616987 1744616987 25468 mdc_colors
1054 0 M 0 Y N N Offer details additional variants Offer details additional variants en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products multiple_checkbox checkbox 1744616121 1744616121 24079 mdc_offer_details_additional
1043 0 S 0 Y N N Price Types Price Types en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616118 1744616118 23789 mdc_pricetypes
1053 0 S 0 Y N N Providers Providers en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616121 1744616121 24073 mdc_providers
1045 0 S 0 Y N N Vehicle condition Vehicle condition en 335,336,337,338,339,340,341,342,343,344,345,346,347,348 A N 0 find_products text checkbox 1744616119 1744616119 23803 mdc_conditions
1090 0 S 0 Y N N Wheel sizes Wheel sizes en 340 A N 0 find_products text checkbox 1744617001 1744617001 26070 mdc_wheelsizes