SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (
    11944, 11945, 11946, 11947, 11948, 11949, 
    11950
  ) 
  AND feature_id IN (553, 622) 
  AND lang_code = 'en'

Query time 0.00268

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "5.51"
    },
    "table": {
      "table_name": "cscart_product_features_values",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY",
        "fl",
        "lang_code",
        "product_id",
        "fpl",
        "idx_product_feature_variant_id"
      ],
      "key": "idx_product_feature_variant_id",
      "used_key_parts": [
        "product_id",
        "feature_id",
        "lang_code"
      ],
      "key_length": "12",
      "rows_examined_per_scan": 22,
      "rows_produced_per_join": 22,
      "filtered": "100.00",
      "using_index": true,
      "cost_info": {
        "read_cost": "3.31",
        "eval_cost": "2.20",
        "prefix_cost": "5.51",
        "data_read_per_join": "17K"
      },
      "used_columns": [
        "feature_id",
        "product_id",
        "variant_id",
        "lang_code"
      ],
      "attached_condition": "((`gaseus`.`cscart_product_features_values`.`product_id` in (11944,11945,11946,11947,11948,11949,11950)) and (`gaseus`.`cscart_product_features_values`.`feature_id` in (553,622)) and (`gaseus`.`cscart_product_features_values`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id feature_id variant_id
11944 553 2197
11944 622 2170
11945 553 2197
11945 622 2158
11946 553 2197
11946 622 2159
11947 553 2197
11947 622 2160
11948 553 2197
11948 622 2155
11949 553 2197
11949 622 2156
11950 553 2197
11950 622 2157