SELECT 
  v.product_id, 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  fd.description, 
  fd.prefix, 
  fd.suffix, 
  vd.variant, 
  f.parent_id, 
  f.position, 
  gf.position as gposition 
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' 
WHERE 
  f.status IN ('A') 
  AND v.product_id in (
    17577, 17578, 17579, 17580, 17581, 17582, 
    17583, 17584, 17585, 17586, 17587, 
    17588, 17589, 17590, 17591, 17592
  ) 
  AND f.display_on_catalog = 'Y' 
  AND f.feature_id in (2) 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(499, f.categories_path) 
    OR FIND_IN_SET(532, f.categories_path) 
    OR FIND_IN_SET(516, 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.00230

JSON explain

{
  "query_block": {
    "select_id": 1,
    "const_condition": "if(0,(subquery#2),'A') = 'A'",
    "filesort": {
      "sort_key": "fd.description, fv.position",
      "temporary_table": {
        "table": {
          "table_name": "f",
          "access_type": "const",
          "possible_keys": ["PRIMARY", "status"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["feature_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100
        },
        "table": {
          "table_name": "v",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "variant_id",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "fpl",
          "key_length": "12",
          "used_key_parts": ["feature_id", "product_id", "lang_code"],
          "rows": 16,
          "filtered": 100,
          "index_condition": "v.feature_id = 2 and v.product_id in (17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592) and v.lang_code = 'en'",
          "attached_condition": "v.variant_id <> 0 or v.`value` <> '' or v.value_int <> ''"
        },
        "table": {
          "table_name": "fd",
          "access_type": "const",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["feature_id", "lang_code"],
          "ref": ["const", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(fd.lang_code = 'en')"
        },
        "table": {
          "table_name": "fv",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "ref": ["devmotorsbay.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": ["devmotorsbay.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": ["const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(gf.feature_type = 'G')"
        },
        "subqueries": [
          {
            "query_block": {
              "select_id": 2,
              "table": {
                "message": "Impossible WHERE noticed after reading const tables"
              }
            }
          }
        ]
      }
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type description prefix suffix variant parent_id position gposition
17584 2 12 E Brand Genesis Motors 0 0
17592 2 12 E Brand Genesis Motors 0 0
17577 2 12 E Brand Genesis Motors 0 0
17585 2 12 E Brand Genesis Motors 0 0
17578 2 12 E Brand Genesis Motors 0 0
17586 2 12 E Brand Genesis Motors 0 0
17579 2 12 E Brand Genesis Motors 0 0
17587 2 12 E Brand Genesis Motors 0 0
17580 2 12 E Brand Genesis Motors 0 0
17588 2 12 E Brand Genesis Motors 0 0
17581 2 12 E Brand Genesis Motors 0 0
17589 2 12 E Brand Genesis Motors 0 0
17582 2 12 E Brand Genesis Motors 0 0
17590 2 12 E Brand Genesis Motors 0 0
17583 2 12 E Brand Genesis Motors 0 0
17591 2 12 E Brand Genesis Motors 0 0