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.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, 
  groups.position AS group_position, 
  cscart_product_features_values.value, 
  cscart_product_features_values.variant_id, 
  cscart_product_features_values.value_int 
FROM 
  cscart_product_features AS pf 
  LEFT JOIN cscart_product_features AS groups ON pf.parent_id = groups.feature_id 
  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 = 563 
  AND cscart_product_features_values.lang_code = 'en' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = pf.feature_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_features'
  ) 
WHERE 
  1 
  AND pf.feature_type != 'G' 
  AND pf.status IN ('A') 
  AND pf.display_on_product = 'Y' 
  AND (
    pf.categories_path = '' 
    OR ISNULL(pf.categories_path) 
    OR FIND_IN_SET(415, pf.categories_path) 
    OR FIND_IN_SET(428, pf.categories_path) 
    OR FIND_IN_SET(443, pf.categories_path) 
    OR FIND_IN_SET(425, pf.categories_path) 
    OR FIND_IN_SET(886, pf.categories_path)
  ) 
GROUP BY 
  pf.feature_id 
ORDER BY 
  group_position, 
  pf.position, 
  cscart_product_features_descriptions.description

Query time 0.00119

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_product_features_values ref PRIMARY,fl,lang_code,product_id,fpl,product_id_idx,feature_id_idx,feature_value_product_idx,product_feature_idx product_feature_idx 3 const 37 Using where; Using temporary; Using filesort
1 SIMPLE pf eq_ref PRIMARY,status PRIMARY 3 mahm3t_cs443.cscart_product_features_values.feature_id 1 Using where
1 SIMPLE groups eq_ref PRIMARY PRIMARY 3 mahm3t_cs443.pf.parent_id 1
1 SIMPLE cscart_product_features_descriptions eq_ref PRIMARY PRIMARY 9 mahm3t_cs443.cscart_product_features_values.feature_id,const 1 Using where
1 SIMPLE cscart_ult_objects_sharing eq_ref PRIMARY PRIMARY 159 mahm3t_cs443.cscart_product_features_values.feature_id,const,const 1 Using where; Using index

Result

feature_id company_id feature_type parent_id display_on_product display_on_catalog display_on_header description lang_code prefix suffix categories_path full_description status comparison position group_position value variant_id value_int
178 1 M 0 Y N N Manufacturer details en 411,412,413,414,415,416,501,513,857,896,897,452 A N 0 6325
27 1 N 0 Y Y Y Thermal conductivity en A N 50 143 0.040
49 1 O 0 Y Y N Compressive stress by 10% relative deformation en kPa 383,443,428,887 A N 65 0 60.000
67 1 S 0 Y Y N Fire resistance en A N 100 225
33 1 O 31 Y Y N Width en mm A N 10 10 0 500.000
32 1 O 31 Y Y N Length en mm A N 20 10 0 1000.000