SELECT 
  v.product_id, 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  f.filter_style, 
  fd.description, 
  fd.prefix, 
  f.parent_id, 
  f.position, 
  gf.position as gposition, 
  vd.variant, 
  fd.suffix 
FROM 
  cscart_product_features as f 
  LEFT JOIN cscart_product_features_values as v ON v.feature_id = f.feature_id 
  LEFT JOIN cscart_product_features_descriptions as fd ON fd.feature_id = v.feature_id 
  AND fd.lang_code = 'en' 
  LEFT JOIN cscart_product_feature_variants fv ON fv.variant_id = v.variant_id 
  LEFT JOIN cscart_product_feature_variant_descriptions as vd ON vd.variant_id = fv.variant_id 
  AND vd.lang_code = 'en' 
  LEFT JOIN cscart_product_features as gf ON gf.feature_id = f.parent_id 
  AND gf.feature_type = 'G' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = f.feature_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_features'
  ) 
WHERE 
  f.status IN ('A') 
  AND v.product_id in (248) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(245, f.categories_path) 
    OR FIND_IN_SET(248, f.categories_path) 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(254, f.categories_path) 
    OR FIND_IN_SET(263, f.categories_path) 
    OR FIND_IN_SET(255, f.categories_path)
  ) 
  AND IF(
    f.parent_id, 
    (
      SELECT 
        status 
      FROM 
        cscart_product_features as df 
      WHERE 
        df.feature_id = f.parent_id
    ), 
    'A'
  ) IN ('A') 
  AND (
    v.variant_id != 0 
    OR (
      f.feature_type != 'C' 
      AND v.value != ''
    ) 
    OR (f.feature_type = 'C') 
    OR v.value_int != ''
  ) 
  AND v.lang_code = 'en' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.00207

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "fd.description, fv.position",
      "temporary_table": {
        "nested_loop": [
          {
            "table": {
              "table_name": "v",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "fl",
                "variant_id",
                "lang_code",
                "product_id",
                "fpl",
                "idx_product_feature_variant_id"
              ],
              "key": "product_id",
              "key_length": "3",
              "used_key_parts": ["product_id"],
              "ref": ["const"],
              "rows": 60,
              "filtered": 96.79299927,
              "attached_condition": "v.lang_code = 'en'"
            }
          },
          {
            "table": {
              "table_name": "f",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY", "status"],
              "key": "PRIMARY",
              "key_length": "3",
              "used_key_parts": ["feature_id"],
              "ref": ["n764025_kutubminar123.v.feature_id"],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "f.`status` = 'A' and f.display_on_catalog = 'Y' and (f.categories_path = '' or find_in_set(245,f.categories_path) or find_in_set(248,f.categories_path) or find_in_set(166,f.categories_path) or find_in_set(254,f.categories_path) or find_in_set(263,f.categories_path) or find_in_set(255,f.categories_path)) and if(f.parent_id,(subquery#2),'A') = 'A' and (v.variant_id <> 0 or f.feature_type <> 'C' and v.`value` <> '' or f.feature_type = 'C' or v.value_int <> '')"
            }
          },
          {
            "table": {
              "table_name": "fd",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "9",
              "used_key_parts": ["feature_id", "lang_code"],
              "ref": ["n764025_kutubminar123.v.feature_id", "const"],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "trigcond(fd.lang_code = 'en')"
            }
          },
          {
            "table": {
              "table_name": "cscart_ult_objects_sharing",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "159",
              "used_key_parts": [
                "share_object_id",
                "share_company_id",
                "share_object_type"
              ],
              "ref": ["n764025_kutubminar123.v.feature_id", "const", "const"],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "cscart_ult_objects_sharing.share_object_id = v.feature_id and cscart_ult_objects_sharing.share_object_type = 'product_features'",
              "using_index": true
            }
          },
          {
            "table": {
              "table_name": "fv",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "3",
              "used_key_parts": ["variant_id"],
              "ref": ["n764025_kutubminar123.v.variant_id"],
              "rows": 1,
              "filtered": 100
            }
          },
          {
            "table": {
              "table_name": "vd",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "9",
              "used_key_parts": ["variant_id", "lang_code"],
              "ref": ["n764025_kutubminar123.fv.variant_id", "const"],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "trigcond(vd.lang_code = 'en' and trigcond(fv.variant_id is not null))"
            }
          },
          {
            "table": {
              "table_name": "gf",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "3",
              "used_key_parts": ["feature_id"],
              "ref": ["n764025_kutubminar123.f.parent_id"],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "trigcond(gf.feature_type = 'G')"
            }
          }
        ],
        "subqueries": [
          {
            "expression_cache": {
              "state": "uninitialized",
              "query_block": {
                "select_id": 2,
                "nested_loop": [
                  {
                    "table": {
                      "table_name": "df",
                      "access_type": "eq_ref",
                      "possible_keys": ["PRIMARY"],
                      "key": "PRIMARY",
                      "key_length": "3",
                      "used_key_parts": ["feature_id"],
                      "ref": ["n764025_kutubminar123.f.parent_id"],
                      "rows": 1,
                      "filtered": 100
                    }
                  }
                ]
              }
            }
          }
        ]
      }
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type filter_style description prefix parent_id position gposition variant suffix
248 47 N 0 C checkbox 3D support 20 0 10
248 42 157 M checkbox Accessories included 40 0 50 HDMI cable
248 42 158 M checkbox Accessories included 40 0 50 USB cable
248 42 156 M checkbox Accessories included 40 0 50 Headset
248 45 161 S checkbox Colors 40 0 50 Black
248 32 149 M checkbox Communications 30 0 40 Ethernet
248 32 148 M checkbox Communications 30 0 40 Wi-Fi (802.11b/g/n)
248 44 160 M checkbox Compatibility with console videogames 40 0 50 Xbox One
248 41 yes, wireless 0 T Controller included 40 0 50
248 29 144 S checkbox CPU 24 0 20 8-core AMD
248 28 143 S checkbox CPU speed 24 0 20 1.75 GHz
248 38 343x81x264 mm 0 T Dimensions (W x H x D) 37 0 100
248 46 HDMI; complectation Kinect 2.0 0 T Features 40 0 50
248 26 141 S checkbox Graphics processor 24 0 20 integrated AMD Radeon GPU
248 23 139 S checkbox Hard drive 20 0 10 500 GB
248 22 Y 0 C checkbox HD support 20 0 10
248 31 146 M checkbox Ports 30 0 40 USB x2
248 31 147 M checkbox Ports 30 0 40 optical audio output
248 31 145 M checkbox Ports 30 0 40 HDMI
248 25 140 S checkbox RAM 24 0 20 8192 MB, DDR3
248 36 155 M checkbox Supported formats 33 0 30 WMA
248 35 153 M checkbox Supported storage devices 33 0 30 DVD RW
248 35 150 M checkbox Supported storage devices 33 0 30 Blu-ray
248 35 154 M checkbox Supported storage devices 33 0 30 CD
248 35 151 M checkbox Supported storage devices 33 0 30 DVD
248 35 152 M checkbox Supported storage devices 33 0 30 DVD R
248 27 142 S checkbox System performance for floating point computation 24 0 20 1.23 TFLOPs
248 21 137 S checkbox Type 20 0 10 stationary
248 34 Y 0 C checkbox Video playback 33 0 30
248 43 159 S checkbox Videogames storage 40 0 50 BD (Blu-ray Disc)
248 39 3.62 kg 0 T Weight 37 0 100